diff --git a/api/analyze.js b/api/analyze.js index 5a77beb..f0f99c4 100644 --- a/api/analyze.js +++ b/api/analyze.js @@ -2,7 +2,7 @@ const zlib = require('zlib') const properties = require('../misc/objectProperties.json') const init = require('../misc/initialProperties.json') const colorStuff = require('../misc/colorProperties.json') -const ids = require('../misc/notableObjects.json') +const ids = require('../misc/objects.json') const blocks = require('../misc/blocks.json') module.exports = async (app, req, res, level) => { diff --git a/api/object.js b/api/object.js index 87a1db0..dbacf1f 100644 --- a/api/object.js +++ b/api/object.js @@ -1,30 +1,25 @@ -const Jimp = require('jimp'); -const objects = require('../misc/objects.json') -const sprites = require('../misc/sprites.json') - -// pre-load this ONCE to drop loading time -let sheets = [1, 2, 3].map(x => `./assets/spritesheets/GJ_GameSheet0${x}.png`) +const Jimp = require('jimp') +const fs = require('fs') module.exports = async (app, req, res) => { - let objID = req.params.text + let objID = (req.params.text || "").split(/[^0-9]/)[0] + let objPath = './assets/ids/' + objID + '.png' + if (!fs.existsSync(objPath + objID)) objPath = './assets/ids/1607.png' - if (!objects[objID] || !sprites[objects[objID]]) objID = 1607 // question mark - let sprite = sprites[objects[objID]] + let flipX = req.query.hasOwnProperty("flipX") || req.query.hasOwnProperty("flipx") || req.query.hasOwnProperty("fx") + let flipY = req.query.hasOwnProperty("flipY") || req.query.hasOwnProperty("flipy") || req.query.hasOwnProperty("fy") - let rotateParams = req.query.rotation || req.query.rotate || req.query.r - let rotation = sprite.rotation - (+rotateParams || 0) - let spritesheet = sheets[sprite.spritesheet - 1] + let rotation = Number(req.query.rotation || req.query.rotate || req.query.r) - let crop = [sprite.x, sprite.y, sprite.width, sprite.height] - if (sprite.rotation == 90) [crop[2], crop[3]] = [crop[3], crop[2]] - - Jimp.read(spritesheet).then(sheet => { - if (typeof spritesheet == "string") sheets[sprite.spritesheet - 1] = new Jimp(sheet) - sheet.crop(...crop) - if (rotation) sheet.rotate(rotation) - sheet.mirror(req.query.hasOwnProperty("flipX"), req.query.hasOwnProperty("flipY")) - sheet.getBuffer(Jimp.AUTO, (err, buffer) => { + Jimp.read(objPath).then(obj => { + obj.mirror(flipX, flipY) + if (rotation) { + obj.invert() // fix transparency, jimp is dumb + obj.rotate(-rotation) + obj.invert() + } + obj.getBuffer(Jimp.AUTO, (err, buffer) => { return res.contentType('image/png').end(buffer, 'base64') }) }) diff --git a/assets/ids/1.png b/assets/ids/1.png new file mode 100644 index 0000000..d0ae1b8 Binary files /dev/null and b/assets/ids/1.png differ diff --git a/assets/ids/10.png b/assets/ids/10.png new file mode 100644 index 0000000..9363a1b Binary files /dev/null and b/assets/ids/10.png differ diff --git a/assets/ids/1000.png b/assets/ids/1000.png new file mode 100644 index 0000000..6f1fb68 Binary files /dev/null and b/assets/ids/1000.png differ diff --git a/assets/ids/1001.png b/assets/ids/1001.png new file mode 100644 index 0000000..d6b759e Binary files /dev/null and b/assets/ids/1001.png differ diff --git a/assets/ids/1002.png b/assets/ids/1002.png new file mode 100644 index 0000000..9683a1b Binary files /dev/null and b/assets/ids/1002.png differ diff --git a/assets/ids/1003.png b/assets/ids/1003.png new file mode 100644 index 0000000..0e4e1cf Binary files /dev/null and b/assets/ids/1003.png differ diff --git a/assets/ids/1004.png b/assets/ids/1004.png new file mode 100644 index 0000000..19dba5b Binary files /dev/null and b/assets/ids/1004.png differ diff --git a/assets/ids/1005.png b/assets/ids/1005.png new file mode 100644 index 0000000..e46d560 Binary files /dev/null and b/assets/ids/1005.png differ diff --git a/assets/ids/1006.png b/assets/ids/1006.png new file mode 100644 index 0000000..5be635c Binary files /dev/null and b/assets/ids/1006.png differ diff --git a/assets/ids/1007.png b/assets/ids/1007.png new file mode 100644 index 0000000..61427d2 Binary files /dev/null and b/assets/ids/1007.png differ diff --git a/assets/ids/1009.png b/assets/ids/1009.png new file mode 100644 index 0000000..0963c4d Binary files /dev/null and b/assets/ids/1009.png differ diff --git a/assets/ids/101.png b/assets/ids/101.png new file mode 100644 index 0000000..06e2376 Binary files /dev/null and b/assets/ids/101.png differ diff --git a/assets/ids/1010.png b/assets/ids/1010.png new file mode 100644 index 0000000..4c4c90e Binary files /dev/null and b/assets/ids/1010.png differ diff --git a/assets/ids/1011.png b/assets/ids/1011.png new file mode 100644 index 0000000..139d883 Binary files /dev/null and b/assets/ids/1011.png differ diff --git a/assets/ids/1012.png b/assets/ids/1012.png new file mode 100644 index 0000000..fa62e83 Binary files /dev/null and b/assets/ids/1012.png differ diff --git a/assets/ids/1013.png b/assets/ids/1013.png new file mode 100644 index 0000000..54ee8e5 Binary files /dev/null and b/assets/ids/1013.png differ diff --git a/assets/ids/1014.png b/assets/ids/1014.png new file mode 100644 index 0000000..903833b Binary files /dev/null and b/assets/ids/1014.png differ diff --git a/assets/ids/1015.png b/assets/ids/1015.png new file mode 100644 index 0000000..c45a76e Binary files /dev/null and b/assets/ids/1015.png differ diff --git a/assets/ids/1016.png b/assets/ids/1016.png new file mode 100644 index 0000000..861b3c7 Binary files /dev/null and b/assets/ids/1016.png differ diff --git a/assets/ids/1017.png b/assets/ids/1017.png new file mode 100644 index 0000000..c1920fd Binary files /dev/null and b/assets/ids/1017.png differ diff --git a/assets/ids/1018.png b/assets/ids/1018.png new file mode 100644 index 0000000..2d0dbb0 Binary files /dev/null and b/assets/ids/1018.png differ diff --git a/assets/ids/1019.png b/assets/ids/1019.png new file mode 100644 index 0000000..d404a2d Binary files /dev/null and b/assets/ids/1019.png differ diff --git a/assets/ids/1020.png b/assets/ids/1020.png new file mode 100644 index 0000000..5a0b730 Binary files /dev/null and b/assets/ids/1020.png differ diff --git a/assets/ids/1021.png b/assets/ids/1021.png new file mode 100644 index 0000000..3dca19b Binary files /dev/null and b/assets/ids/1021.png differ diff --git a/assets/ids/1022.png b/assets/ids/1022.png new file mode 100644 index 0000000..29a3e57 Binary files /dev/null and b/assets/ids/1022.png differ diff --git a/assets/ids/1024.png b/assets/ids/1024.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1024.png differ diff --git a/assets/ids/1025.png b/assets/ids/1025.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1025.png differ diff --git a/assets/ids/1026.png b/assets/ids/1026.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/1026.png differ diff --git a/assets/ids/1027.png b/assets/ids/1027.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/1027.png differ diff --git a/assets/ids/1028.png b/assets/ids/1028.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/1028.png differ diff --git a/assets/ids/1029.png b/assets/ids/1029.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1029.png differ diff --git a/assets/ids/103.png b/assets/ids/103.png new file mode 100644 index 0000000..699f114 Binary files /dev/null and b/assets/ids/103.png differ diff --git a/assets/ids/1030.png b/assets/ids/1030.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/1030.png differ diff --git a/assets/ids/1031.png b/assets/ids/1031.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/1031.png differ diff --git a/assets/ids/1032.png b/assets/ids/1032.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/1032.png differ diff --git a/assets/ids/1033.png b/assets/ids/1033.png new file mode 100644 index 0000000..ab42539 Binary files /dev/null and b/assets/ids/1033.png differ diff --git a/assets/ids/1034.png b/assets/ids/1034.png new file mode 100644 index 0000000..74755f0 Binary files /dev/null and b/assets/ids/1034.png differ diff --git a/assets/ids/1035.png b/assets/ids/1035.png new file mode 100644 index 0000000..e10bc38 Binary files /dev/null and b/assets/ids/1035.png differ diff --git a/assets/ids/1036.png b/assets/ids/1036.png new file mode 100644 index 0000000..d4f10cc Binary files /dev/null and b/assets/ids/1036.png differ diff --git a/assets/ids/1037.png b/assets/ids/1037.png new file mode 100644 index 0000000..207f0ff Binary files /dev/null and b/assets/ids/1037.png differ diff --git a/assets/ids/1038.png b/assets/ids/1038.png new file mode 100644 index 0000000..69e1483 Binary files /dev/null and b/assets/ids/1038.png differ diff --git a/assets/ids/1039.png b/assets/ids/1039.png new file mode 100644 index 0000000..1af2d20 Binary files /dev/null and b/assets/ids/1039.png differ diff --git a/assets/ids/1040.png b/assets/ids/1040.png new file mode 100644 index 0000000..5291689 Binary files /dev/null and b/assets/ids/1040.png differ diff --git a/assets/ids/1041.png b/assets/ids/1041.png new file mode 100644 index 0000000..e5ca99f Binary files /dev/null and b/assets/ids/1041.png differ diff --git a/assets/ids/1042.png b/assets/ids/1042.png new file mode 100644 index 0000000..7026c68 Binary files /dev/null and b/assets/ids/1042.png differ diff --git a/assets/ids/1043.png b/assets/ids/1043.png new file mode 100644 index 0000000..905aecc Binary files /dev/null and b/assets/ids/1043.png differ diff --git a/assets/ids/1044.png b/assets/ids/1044.png new file mode 100644 index 0000000..d0f4104 Binary files /dev/null and b/assets/ids/1044.png differ diff --git a/assets/ids/1045.png b/assets/ids/1045.png new file mode 100644 index 0000000..258542d Binary files /dev/null and b/assets/ids/1045.png differ diff --git a/assets/ids/1046.png b/assets/ids/1046.png new file mode 100644 index 0000000..75909f2 Binary files /dev/null and b/assets/ids/1046.png differ diff --git a/assets/ids/1047.png b/assets/ids/1047.png new file mode 100644 index 0000000..dbbbac5 Binary files /dev/null and b/assets/ids/1047.png differ diff --git a/assets/ids/1048.png b/assets/ids/1048.png new file mode 100644 index 0000000..048c667 Binary files /dev/null and b/assets/ids/1048.png differ diff --git a/assets/ids/1049.png b/assets/ids/1049.png new file mode 100644 index 0000000..e6010f7 Binary files /dev/null and b/assets/ids/1049.png differ diff --git a/assets/ids/105.png b/assets/ids/105.png new file mode 100644 index 0000000..db82f56 Binary files /dev/null and b/assets/ids/105.png differ diff --git a/assets/ids/1050.png b/assets/ids/1050.png new file mode 100644 index 0000000..f514fd7 Binary files /dev/null and b/assets/ids/1050.png differ diff --git a/assets/ids/1051.png b/assets/ids/1051.png new file mode 100644 index 0000000..f4468d6 Binary files /dev/null and b/assets/ids/1051.png differ diff --git a/assets/ids/1052.png b/assets/ids/1052.png new file mode 100644 index 0000000..1a42c15 Binary files /dev/null and b/assets/ids/1052.png differ diff --git a/assets/ids/1053.png b/assets/ids/1053.png new file mode 100644 index 0000000..c76161c Binary files /dev/null and b/assets/ids/1053.png differ diff --git a/assets/ids/1054.png b/assets/ids/1054.png new file mode 100644 index 0000000..91300ed Binary files /dev/null and b/assets/ids/1054.png differ diff --git a/assets/ids/1055.png b/assets/ids/1055.png new file mode 100644 index 0000000..599a86e Binary files /dev/null and b/assets/ids/1055.png differ diff --git a/assets/ids/1056.png b/assets/ids/1056.png new file mode 100644 index 0000000..599a86e Binary files /dev/null and b/assets/ids/1056.png differ diff --git a/assets/ids/1057.png b/assets/ids/1057.png new file mode 100644 index 0000000..599a86e Binary files /dev/null and b/assets/ids/1057.png differ diff --git a/assets/ids/1058.png b/assets/ids/1058.png new file mode 100644 index 0000000..4bea1b3 Binary files /dev/null and b/assets/ids/1058.png differ diff --git a/assets/ids/1059.png b/assets/ids/1059.png new file mode 100644 index 0000000..124fe5b Binary files /dev/null and b/assets/ids/1059.png differ diff --git a/assets/ids/106.png b/assets/ids/106.png new file mode 100644 index 0000000..a2be282 Binary files /dev/null and b/assets/ids/106.png differ diff --git a/assets/ids/1060.png b/assets/ids/1060.png new file mode 100644 index 0000000..bce28d6 Binary files /dev/null and b/assets/ids/1060.png differ diff --git a/assets/ids/1061.png b/assets/ids/1061.png new file mode 100644 index 0000000..0c13187 Binary files /dev/null and b/assets/ids/1061.png differ diff --git a/assets/ids/1062.png b/assets/ids/1062.png new file mode 100644 index 0000000..555140e Binary files /dev/null and b/assets/ids/1062.png differ diff --git a/assets/ids/1063.png b/assets/ids/1063.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1063.png differ diff --git a/assets/ids/1064.png b/assets/ids/1064.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1064.png differ diff --git a/assets/ids/1065.png b/assets/ids/1065.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/1065.png differ diff --git a/assets/ids/1066.png b/assets/ids/1066.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/1066.png differ diff --git a/assets/ids/1067.png b/assets/ids/1067.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/1067.png differ diff --git a/assets/ids/1068.png b/assets/ids/1068.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1068.png differ diff --git a/assets/ids/1069.png b/assets/ids/1069.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/1069.png differ diff --git a/assets/ids/107.png b/assets/ids/107.png new file mode 100644 index 0000000..4615c57 Binary files /dev/null and b/assets/ids/107.png differ diff --git a/assets/ids/1070.png b/assets/ids/1070.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/1070.png differ diff --git a/assets/ids/1071.png b/assets/ids/1071.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/1071.png differ diff --git a/assets/ids/1075.png b/assets/ids/1075.png new file mode 100644 index 0000000..cc995af Binary files /dev/null and b/assets/ids/1075.png differ diff --git a/assets/ids/1076.png b/assets/ids/1076.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/1076.png differ diff --git a/assets/ids/1077.png b/assets/ids/1077.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/1077.png differ diff --git a/assets/ids/1078.png b/assets/ids/1078.png new file mode 100644 index 0000000..b01770a Binary files /dev/null and b/assets/ids/1078.png differ diff --git a/assets/ids/1079.png b/assets/ids/1079.png new file mode 100644 index 0000000..2ef77af Binary files /dev/null and b/assets/ids/1079.png differ diff --git a/assets/ids/1080.png b/assets/ids/1080.png new file mode 100644 index 0000000..aa8a97a Binary files /dev/null and b/assets/ids/1080.png differ diff --git a/assets/ids/1081.png b/assets/ids/1081.png new file mode 100644 index 0000000..a70d3cf Binary files /dev/null and b/assets/ids/1081.png differ diff --git a/assets/ids/1082.png b/assets/ids/1082.png new file mode 100644 index 0000000..2437288 Binary files /dev/null and b/assets/ids/1082.png differ diff --git a/assets/ids/1083.png b/assets/ids/1083.png new file mode 100644 index 0000000..5a65452 Binary files /dev/null and b/assets/ids/1083.png differ diff --git a/assets/ids/1084.png b/assets/ids/1084.png new file mode 100644 index 0000000..76a9868 Binary files /dev/null and b/assets/ids/1084.png differ diff --git a/assets/ids/1085.png b/assets/ids/1085.png new file mode 100644 index 0000000..6e68852 Binary files /dev/null and b/assets/ids/1085.png differ diff --git a/assets/ids/1086.png b/assets/ids/1086.png new file mode 100644 index 0000000..29e162f Binary files /dev/null and b/assets/ids/1086.png differ diff --git a/assets/ids/1087.png b/assets/ids/1087.png new file mode 100644 index 0000000..fe1e2e7 Binary files /dev/null and b/assets/ids/1087.png differ diff --git a/assets/ids/1088.png b/assets/ids/1088.png new file mode 100644 index 0000000..3a6293b Binary files /dev/null and b/assets/ids/1088.png differ diff --git a/assets/ids/1089.png b/assets/ids/1089.png new file mode 100644 index 0000000..67e5ddf Binary files /dev/null and b/assets/ids/1089.png differ diff --git a/assets/ids/1090.png b/assets/ids/1090.png new file mode 100644 index 0000000..cac19c5 Binary files /dev/null and b/assets/ids/1090.png differ diff --git a/assets/ids/1091.png b/assets/ids/1091.png new file mode 100644 index 0000000..97798a0 Binary files /dev/null and b/assets/ids/1091.png differ diff --git a/assets/ids/1092.png b/assets/ids/1092.png new file mode 100644 index 0000000..4e4123b Binary files /dev/null and b/assets/ids/1092.png differ diff --git a/assets/ids/1093.png b/assets/ids/1093.png new file mode 100644 index 0000000..fe6f81c Binary files /dev/null and b/assets/ids/1093.png differ diff --git a/assets/ids/1094.png b/assets/ids/1094.png new file mode 100644 index 0000000..cd3e1d6 Binary files /dev/null and b/assets/ids/1094.png differ diff --git a/assets/ids/1095.png b/assets/ids/1095.png new file mode 100644 index 0000000..b01770a Binary files /dev/null and b/assets/ids/1095.png differ diff --git a/assets/ids/1096.png b/assets/ids/1096.png new file mode 100644 index 0000000..2ef77af Binary files /dev/null and b/assets/ids/1096.png differ diff --git a/assets/ids/1097.png b/assets/ids/1097.png new file mode 100644 index 0000000..aa8a97a Binary files /dev/null and b/assets/ids/1097.png differ diff --git a/assets/ids/1098.png b/assets/ids/1098.png new file mode 100644 index 0000000..a70d3cf Binary files /dev/null and b/assets/ids/1098.png differ diff --git a/assets/ids/1099.png b/assets/ids/1099.png new file mode 100644 index 0000000..ad94f5d Binary files /dev/null and b/assets/ids/1099.png differ diff --git a/assets/ids/11.png b/assets/ids/11.png new file mode 100644 index 0000000..1f64489 Binary files /dev/null and b/assets/ids/11.png differ diff --git a/assets/ids/110.png b/assets/ids/110.png new file mode 100644 index 0000000..8825771 Binary files /dev/null and b/assets/ids/110.png differ diff --git a/assets/ids/1100.png b/assets/ids/1100.png new file mode 100644 index 0000000..3f7b07f Binary files /dev/null and b/assets/ids/1100.png differ diff --git a/assets/ids/1101.png b/assets/ids/1101.png new file mode 100644 index 0000000..7595e97 Binary files /dev/null and b/assets/ids/1101.png differ diff --git a/assets/ids/1102.png b/assets/ids/1102.png new file mode 100644 index 0000000..f117b9b Binary files /dev/null and b/assets/ids/1102.png differ diff --git a/assets/ids/1103.png b/assets/ids/1103.png new file mode 100644 index 0000000..97b2abc Binary files /dev/null and b/assets/ids/1103.png differ diff --git a/assets/ids/1104.png b/assets/ids/1104.png new file mode 100644 index 0000000..fc0adc8 Binary files /dev/null and b/assets/ids/1104.png differ diff --git a/assets/ids/1105.png b/assets/ids/1105.png new file mode 100644 index 0000000..045dc76 Binary files /dev/null and b/assets/ids/1105.png differ diff --git a/assets/ids/1106.png b/assets/ids/1106.png new file mode 100644 index 0000000..97fe265 Binary files /dev/null and b/assets/ids/1106.png differ diff --git a/assets/ids/1107.png b/assets/ids/1107.png new file mode 100644 index 0000000..d4cf26e Binary files /dev/null and b/assets/ids/1107.png differ diff --git a/assets/ids/1108.png b/assets/ids/1108.png new file mode 100644 index 0000000..4e4123b Binary files /dev/null and b/assets/ids/1108.png differ diff --git a/assets/ids/1109.png b/assets/ids/1109.png new file mode 100644 index 0000000..ad94f5d Binary files /dev/null and b/assets/ids/1109.png differ diff --git a/assets/ids/111.png b/assets/ids/111.png new file mode 100644 index 0000000..c45a6d2 Binary files /dev/null and b/assets/ids/111.png differ diff --git a/assets/ids/1110.png b/assets/ids/1110.png new file mode 100644 index 0000000..f79afe2 Binary files /dev/null and b/assets/ids/1110.png differ diff --git a/assets/ids/1111.png b/assets/ids/1111.png new file mode 100644 index 0000000..e02e9d7 Binary files /dev/null and b/assets/ids/1111.png differ diff --git a/assets/ids/1112.png b/assets/ids/1112.png new file mode 100644 index 0000000..b12f551 Binary files /dev/null and b/assets/ids/1112.png differ diff --git a/assets/ids/1113.png b/assets/ids/1113.png new file mode 100644 index 0000000..23f0acf Binary files /dev/null and b/assets/ids/1113.png differ diff --git a/assets/ids/1114.png b/assets/ids/1114.png new file mode 100644 index 0000000..e950349 Binary files /dev/null and b/assets/ids/1114.png differ diff --git a/assets/ids/1115.png b/assets/ids/1115.png new file mode 100644 index 0000000..7600975 Binary files /dev/null and b/assets/ids/1115.png differ diff --git a/assets/ids/1116.png b/assets/ids/1116.png new file mode 100644 index 0000000..9fe0148 Binary files /dev/null and b/assets/ids/1116.png differ diff --git a/assets/ids/1117.png b/assets/ids/1117.png new file mode 100644 index 0000000..2a61be3 Binary files /dev/null and b/assets/ids/1117.png differ diff --git a/assets/ids/1118.png b/assets/ids/1118.png new file mode 100644 index 0000000..04046f4 Binary files /dev/null and b/assets/ids/1118.png differ diff --git a/assets/ids/1120.png b/assets/ids/1120.png new file mode 100644 index 0000000..bec1329 Binary files /dev/null and b/assets/ids/1120.png differ diff --git a/assets/ids/1122.png b/assets/ids/1122.png new file mode 100644 index 0000000..6a4820c Binary files /dev/null and b/assets/ids/1122.png differ diff --git a/assets/ids/1123.png b/assets/ids/1123.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1123.png differ diff --git a/assets/ids/1124.png b/assets/ids/1124.png new file mode 100644 index 0000000..9353de2 Binary files /dev/null and b/assets/ids/1124.png differ diff --git a/assets/ids/1125.png b/assets/ids/1125.png new file mode 100644 index 0000000..23e7eb9 Binary files /dev/null and b/assets/ids/1125.png differ diff --git a/assets/ids/1126.png b/assets/ids/1126.png new file mode 100644 index 0000000..5b83980 Binary files /dev/null and b/assets/ids/1126.png differ diff --git a/assets/ids/1127.png b/assets/ids/1127.png new file mode 100644 index 0000000..5b83980 Binary files /dev/null and b/assets/ids/1127.png differ diff --git a/assets/ids/113.png b/assets/ids/113.png new file mode 100644 index 0000000..6e8dd7e Binary files /dev/null and b/assets/ids/113.png differ diff --git a/assets/ids/1132.png b/assets/ids/1132.png new file mode 100644 index 0000000..b446f2f Binary files /dev/null and b/assets/ids/1132.png differ diff --git a/assets/ids/1133.png b/assets/ids/1133.png new file mode 100644 index 0000000..2d4e368 Binary files /dev/null and b/assets/ids/1133.png differ diff --git a/assets/ids/1134.png b/assets/ids/1134.png new file mode 100644 index 0000000..3223180 Binary files /dev/null and b/assets/ids/1134.png differ diff --git a/assets/ids/1135.png b/assets/ids/1135.png new file mode 100644 index 0000000..0b44170 Binary files /dev/null and b/assets/ids/1135.png differ diff --git a/assets/ids/1136.png b/assets/ids/1136.png new file mode 100644 index 0000000..501b928 Binary files /dev/null and b/assets/ids/1136.png differ diff --git a/assets/ids/1137.png b/assets/ids/1137.png new file mode 100644 index 0000000..13d6c56 Binary files /dev/null and b/assets/ids/1137.png differ diff --git a/assets/ids/1138.png b/assets/ids/1138.png new file mode 100644 index 0000000..9fe4c4c Binary files /dev/null and b/assets/ids/1138.png differ diff --git a/assets/ids/1139.png b/assets/ids/1139.png new file mode 100644 index 0000000..e06cce5 Binary files /dev/null and b/assets/ids/1139.png differ diff --git a/assets/ids/114.png b/assets/ids/114.png new file mode 100644 index 0000000..7d66475 Binary files /dev/null and b/assets/ids/114.png differ diff --git a/assets/ids/1140.png b/assets/ids/1140.png new file mode 100644 index 0000000..ff13e9e Binary files /dev/null and b/assets/ids/1140.png differ diff --git a/assets/ids/1141.png b/assets/ids/1141.png new file mode 100644 index 0000000..8351e4c Binary files /dev/null and b/assets/ids/1141.png differ diff --git a/assets/ids/1142.png b/assets/ids/1142.png new file mode 100644 index 0000000..3b7f6f7 Binary files /dev/null and b/assets/ids/1142.png differ diff --git a/assets/ids/1143.png b/assets/ids/1143.png new file mode 100644 index 0000000..ff81a12 Binary files /dev/null and b/assets/ids/1143.png differ diff --git a/assets/ids/1144.png b/assets/ids/1144.png new file mode 100644 index 0000000..3015875 Binary files /dev/null and b/assets/ids/1144.png differ diff --git a/assets/ids/1145.png b/assets/ids/1145.png new file mode 100644 index 0000000..a9a752a Binary files /dev/null and b/assets/ids/1145.png differ diff --git a/assets/ids/1146.png b/assets/ids/1146.png new file mode 100644 index 0000000..d8d3700 Binary files /dev/null and b/assets/ids/1146.png differ diff --git a/assets/ids/1147.png b/assets/ids/1147.png new file mode 100644 index 0000000..39dcfed Binary files /dev/null and b/assets/ids/1147.png differ diff --git a/assets/ids/1148.png b/assets/ids/1148.png new file mode 100644 index 0000000..dabc219 Binary files /dev/null and b/assets/ids/1148.png differ diff --git a/assets/ids/1149.png b/assets/ids/1149.png new file mode 100644 index 0000000..6ed9534 Binary files /dev/null and b/assets/ids/1149.png differ diff --git a/assets/ids/115.png b/assets/ids/115.png new file mode 100644 index 0000000..6849d53 Binary files /dev/null and b/assets/ids/115.png differ diff --git a/assets/ids/1150.png b/assets/ids/1150.png new file mode 100644 index 0000000..0d888a6 Binary files /dev/null and b/assets/ids/1150.png differ diff --git a/assets/ids/1151.png b/assets/ids/1151.png new file mode 100644 index 0000000..05302e4 Binary files /dev/null and b/assets/ids/1151.png differ diff --git a/assets/ids/1152.png b/assets/ids/1152.png new file mode 100644 index 0000000..08f982c Binary files /dev/null and b/assets/ids/1152.png differ diff --git a/assets/ids/1153.png b/assets/ids/1153.png new file mode 100644 index 0000000..0913329 Binary files /dev/null and b/assets/ids/1153.png differ diff --git a/assets/ids/1154.png b/assets/ids/1154.png new file mode 100644 index 0000000..9165f84 Binary files /dev/null and b/assets/ids/1154.png differ diff --git a/assets/ids/1155.png b/assets/ids/1155.png new file mode 100644 index 0000000..c5afb3a Binary files /dev/null and b/assets/ids/1155.png differ diff --git a/assets/ids/1156.png b/assets/ids/1156.png new file mode 100644 index 0000000..8ced6a2 Binary files /dev/null and b/assets/ids/1156.png differ diff --git a/assets/ids/1157.png b/assets/ids/1157.png new file mode 100644 index 0000000..c063e2b Binary files /dev/null and b/assets/ids/1157.png differ diff --git a/assets/ids/1158.png b/assets/ids/1158.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/1158.png differ diff --git a/assets/ids/1159.png b/assets/ids/1159.png new file mode 100644 index 0000000..f089dbd Binary files /dev/null and b/assets/ids/1159.png differ diff --git a/assets/ids/116.png b/assets/ids/116.png new file mode 100644 index 0000000..598c4a4 Binary files /dev/null and b/assets/ids/116.png differ diff --git a/assets/ids/1160.png b/assets/ids/1160.png new file mode 100644 index 0000000..739ba92 Binary files /dev/null and b/assets/ids/1160.png differ diff --git a/assets/ids/1161.png b/assets/ids/1161.png new file mode 100644 index 0000000..3b44aa3 Binary files /dev/null and b/assets/ids/1161.png differ diff --git a/assets/ids/1162.png b/assets/ids/1162.png new file mode 100644 index 0000000..2b652d2 Binary files /dev/null and b/assets/ids/1162.png differ diff --git a/assets/ids/1163.png b/assets/ids/1163.png new file mode 100644 index 0000000..351032f Binary files /dev/null and b/assets/ids/1163.png differ diff --git a/assets/ids/1164.png b/assets/ids/1164.png new file mode 100644 index 0000000..740a4a3 Binary files /dev/null and b/assets/ids/1164.png differ diff --git a/assets/ids/1165.png b/assets/ids/1165.png new file mode 100644 index 0000000..6fd66d3 Binary files /dev/null and b/assets/ids/1165.png differ diff --git a/assets/ids/1166.png b/assets/ids/1166.png new file mode 100644 index 0000000..a948036 Binary files /dev/null and b/assets/ids/1166.png differ diff --git a/assets/ids/1167.png b/assets/ids/1167.png new file mode 100644 index 0000000..f8a96b1 Binary files /dev/null and b/assets/ids/1167.png differ diff --git a/assets/ids/1168.png b/assets/ids/1168.png new file mode 100644 index 0000000..4d25dee Binary files /dev/null and b/assets/ids/1168.png differ diff --git a/assets/ids/1169.png b/assets/ids/1169.png new file mode 100644 index 0000000..6d63747 Binary files /dev/null and b/assets/ids/1169.png differ diff --git a/assets/ids/117.png b/assets/ids/117.png new file mode 100644 index 0000000..ae5703e Binary files /dev/null and b/assets/ids/117.png differ diff --git a/assets/ids/1170.png b/assets/ids/1170.png new file mode 100644 index 0000000..79aef88 Binary files /dev/null and b/assets/ids/1170.png differ diff --git a/assets/ids/1171.png b/assets/ids/1171.png new file mode 100644 index 0000000..a99cfc7 Binary files /dev/null and b/assets/ids/1171.png differ diff --git a/assets/ids/1172.png b/assets/ids/1172.png new file mode 100644 index 0000000..e6db3e1 Binary files /dev/null and b/assets/ids/1172.png differ diff --git a/assets/ids/1173.png b/assets/ids/1173.png new file mode 100644 index 0000000..e9fcab3 Binary files /dev/null and b/assets/ids/1173.png differ diff --git a/assets/ids/1174.png b/assets/ids/1174.png new file mode 100644 index 0000000..709ebba Binary files /dev/null and b/assets/ids/1174.png differ diff --git a/assets/ids/1175.png b/assets/ids/1175.png new file mode 100644 index 0000000..02e5b60 Binary files /dev/null and b/assets/ids/1175.png differ diff --git a/assets/ids/1176.png b/assets/ids/1176.png new file mode 100644 index 0000000..bd63920 Binary files /dev/null and b/assets/ids/1176.png differ diff --git a/assets/ids/1177.png b/assets/ids/1177.png new file mode 100644 index 0000000..b7297ad Binary files /dev/null and b/assets/ids/1177.png differ diff --git a/assets/ids/1178.png b/assets/ids/1178.png new file mode 100644 index 0000000..f7c7e49 Binary files /dev/null and b/assets/ids/1178.png differ diff --git a/assets/ids/1179.png b/assets/ids/1179.png new file mode 100644 index 0000000..14988d0 Binary files /dev/null and b/assets/ids/1179.png differ diff --git a/assets/ids/118.png b/assets/ids/118.png new file mode 100644 index 0000000..045ef06 Binary files /dev/null and b/assets/ids/118.png differ diff --git a/assets/ids/1180.png b/assets/ids/1180.png new file mode 100644 index 0000000..7370135 Binary files /dev/null and b/assets/ids/1180.png differ diff --git a/assets/ids/1181.png b/assets/ids/1181.png new file mode 100644 index 0000000..7eaa3f4 Binary files /dev/null and b/assets/ids/1181.png differ diff --git a/assets/ids/1182.png b/assets/ids/1182.png new file mode 100644 index 0000000..e516839 Binary files /dev/null and b/assets/ids/1182.png differ diff --git a/assets/ids/1183.png b/assets/ids/1183.png new file mode 100644 index 0000000..8f0fbec Binary files /dev/null and b/assets/ids/1183.png differ diff --git a/assets/ids/1184.png b/assets/ids/1184.png new file mode 100644 index 0000000..f1cd560 Binary files /dev/null and b/assets/ids/1184.png differ diff --git a/assets/ids/1185.png b/assets/ids/1185.png new file mode 100644 index 0000000..e99dcb5 Binary files /dev/null and b/assets/ids/1185.png differ diff --git a/assets/ids/1186.png b/assets/ids/1186.png new file mode 100644 index 0000000..153c813 Binary files /dev/null and b/assets/ids/1186.png differ diff --git a/assets/ids/1187.png b/assets/ids/1187.png new file mode 100644 index 0000000..585af99 Binary files /dev/null and b/assets/ids/1187.png differ diff --git a/assets/ids/1188.png b/assets/ids/1188.png new file mode 100644 index 0000000..399a781 Binary files /dev/null and b/assets/ids/1188.png differ diff --git a/assets/ids/1189.png b/assets/ids/1189.png new file mode 100644 index 0000000..070d667 Binary files /dev/null and b/assets/ids/1189.png differ diff --git a/assets/ids/119.png b/assets/ids/119.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/119.png differ diff --git a/assets/ids/1190.png b/assets/ids/1190.png new file mode 100644 index 0000000..5a688a0 Binary files /dev/null and b/assets/ids/1190.png differ diff --git a/assets/ids/1191.png b/assets/ids/1191.png new file mode 100644 index 0000000..2daf561 Binary files /dev/null and b/assets/ids/1191.png differ diff --git a/assets/ids/1192.png b/assets/ids/1192.png new file mode 100644 index 0000000..c581eb2 Binary files /dev/null and b/assets/ids/1192.png differ diff --git a/assets/ids/1193.png b/assets/ids/1193.png new file mode 100644 index 0000000..1f1bf67 Binary files /dev/null and b/assets/ids/1193.png differ diff --git a/assets/ids/1194.png b/assets/ids/1194.png new file mode 100644 index 0000000..c613a80 Binary files /dev/null and b/assets/ids/1194.png differ diff --git a/assets/ids/1195.png b/assets/ids/1195.png new file mode 100644 index 0000000..e7cf838 Binary files /dev/null and b/assets/ids/1195.png differ diff --git a/assets/ids/1196.png b/assets/ids/1196.png new file mode 100644 index 0000000..a4c3c72 Binary files /dev/null and b/assets/ids/1196.png differ diff --git a/assets/ids/1197.png b/assets/ids/1197.png new file mode 100644 index 0000000..2daf561 Binary files /dev/null and b/assets/ids/1197.png differ diff --git a/assets/ids/1198.png b/assets/ids/1198.png new file mode 100644 index 0000000..c3b818e Binary files /dev/null and b/assets/ids/1198.png differ diff --git a/assets/ids/1199.png b/assets/ids/1199.png new file mode 100644 index 0000000..2b3c7c5 Binary files /dev/null and b/assets/ids/1199.png differ diff --git a/assets/ids/12.png b/assets/ids/12.png new file mode 100644 index 0000000..4bf86c5 Binary files /dev/null and b/assets/ids/12.png differ diff --git a/assets/ids/120.png b/assets/ids/120.png new file mode 100644 index 0000000..e0dea76 Binary files /dev/null and b/assets/ids/120.png differ diff --git a/assets/ids/1200.png b/assets/ids/1200.png new file mode 100644 index 0000000..8d79e5d Binary files /dev/null and b/assets/ids/1200.png differ diff --git a/assets/ids/1201.png b/assets/ids/1201.png new file mode 100644 index 0000000..a31d3a9 Binary files /dev/null and b/assets/ids/1201.png differ diff --git a/assets/ids/1202.png b/assets/ids/1202.png new file mode 100644 index 0000000..87f131d Binary files /dev/null and b/assets/ids/1202.png differ diff --git a/assets/ids/1203.png b/assets/ids/1203.png new file mode 100644 index 0000000..b1afd37 Binary files /dev/null and b/assets/ids/1203.png differ diff --git a/assets/ids/1204.png b/assets/ids/1204.png new file mode 100644 index 0000000..206b0e0 Binary files /dev/null and b/assets/ids/1204.png differ diff --git a/assets/ids/1205.png b/assets/ids/1205.png new file mode 100644 index 0000000..95b4e8b Binary files /dev/null and b/assets/ids/1205.png differ diff --git a/assets/ids/1206.png b/assets/ids/1206.png new file mode 100644 index 0000000..0f5065a Binary files /dev/null and b/assets/ids/1206.png differ diff --git a/assets/ids/1207.png b/assets/ids/1207.png new file mode 100644 index 0000000..fc36696 Binary files /dev/null and b/assets/ids/1207.png differ diff --git a/assets/ids/1208.png b/assets/ids/1208.png new file mode 100644 index 0000000..5e549dc Binary files /dev/null and b/assets/ids/1208.png differ diff --git a/assets/ids/1209.png b/assets/ids/1209.png new file mode 100644 index 0000000..be3a41d Binary files /dev/null and b/assets/ids/1209.png differ diff --git a/assets/ids/121.png b/assets/ids/121.png new file mode 100644 index 0000000..750779d Binary files /dev/null and b/assets/ids/121.png differ diff --git a/assets/ids/1210.png b/assets/ids/1210.png new file mode 100644 index 0000000..206b0e0 Binary files /dev/null and b/assets/ids/1210.png differ diff --git a/assets/ids/122.png b/assets/ids/122.png new file mode 100644 index 0000000..124b437 Binary files /dev/null and b/assets/ids/122.png differ diff --git a/assets/ids/1220.png b/assets/ids/1220.png new file mode 100644 index 0000000..2f8c528 Binary files /dev/null and b/assets/ids/1220.png differ diff --git a/assets/ids/1221.png b/assets/ids/1221.png new file mode 100644 index 0000000..5856fc1 Binary files /dev/null and b/assets/ids/1221.png differ diff --git a/assets/ids/1222.png b/assets/ids/1222.png new file mode 100644 index 0000000..b35e573 Binary files /dev/null and b/assets/ids/1222.png differ diff --git a/assets/ids/1223.png b/assets/ids/1223.png new file mode 100644 index 0000000..c33689b Binary files /dev/null and b/assets/ids/1223.png differ diff --git a/assets/ids/1224.png b/assets/ids/1224.png new file mode 100644 index 0000000..89a589a Binary files /dev/null and b/assets/ids/1224.png differ diff --git a/assets/ids/1225.png b/assets/ids/1225.png new file mode 100644 index 0000000..ab3c0e5 Binary files /dev/null and b/assets/ids/1225.png differ diff --git a/assets/ids/1226.png b/assets/ids/1226.png new file mode 100644 index 0000000..17463a4 Binary files /dev/null and b/assets/ids/1226.png differ diff --git a/assets/ids/1227.png b/assets/ids/1227.png new file mode 100644 index 0000000..b35e573 Binary files /dev/null and b/assets/ids/1227.png differ diff --git a/assets/ids/1228.png b/assets/ids/1228.png new file mode 100644 index 0000000..ed553d3 Binary files /dev/null and b/assets/ids/1228.png differ diff --git a/assets/ids/1229.png b/assets/ids/1229.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/1229.png differ diff --git a/assets/ids/123.png b/assets/ids/123.png new file mode 100644 index 0000000..1b4a5d4 Binary files /dev/null and b/assets/ids/123.png differ diff --git a/assets/ids/1230.png b/assets/ids/1230.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/1230.png differ diff --git a/assets/ids/1231.png b/assets/ids/1231.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/1231.png differ diff --git a/assets/ids/1232.png b/assets/ids/1232.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1232.png differ diff --git a/assets/ids/1233.png b/assets/ids/1233.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1233.png differ diff --git a/assets/ids/1234.png b/assets/ids/1234.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1234.png differ diff --git a/assets/ids/1235.png b/assets/ids/1235.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1235.png differ diff --git a/assets/ids/1236.png b/assets/ids/1236.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1236.png differ diff --git a/assets/ids/1237.png b/assets/ids/1237.png new file mode 100644 index 0000000..2ce74aa Binary files /dev/null and b/assets/ids/1237.png differ diff --git a/assets/ids/1238.png b/assets/ids/1238.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/1238.png differ diff --git a/assets/ids/1239.png b/assets/ids/1239.png new file mode 100644 index 0000000..e84f3ef Binary files /dev/null and b/assets/ids/1239.png differ diff --git a/assets/ids/124.png b/assets/ids/124.png new file mode 100644 index 0000000..232a002 Binary files /dev/null and b/assets/ids/124.png differ diff --git a/assets/ids/1240.png b/assets/ids/1240.png new file mode 100644 index 0000000..c3345c9 Binary files /dev/null and b/assets/ids/1240.png differ diff --git a/assets/ids/1241.png b/assets/ids/1241.png new file mode 100644 index 0000000..48aa64e Binary files /dev/null and b/assets/ids/1241.png differ diff --git a/assets/ids/1242.png b/assets/ids/1242.png new file mode 100644 index 0000000..d438ec5 Binary files /dev/null and b/assets/ids/1242.png differ diff --git a/assets/ids/1243.png b/assets/ids/1243.png new file mode 100644 index 0000000..f2aec34 Binary files /dev/null and b/assets/ids/1243.png differ diff --git a/assets/ids/1244.png b/assets/ids/1244.png new file mode 100644 index 0000000..007edc6 Binary files /dev/null and b/assets/ids/1244.png differ diff --git a/assets/ids/1245.png b/assets/ids/1245.png new file mode 100644 index 0000000..ce02406 Binary files /dev/null and b/assets/ids/1245.png differ diff --git a/assets/ids/1246.png b/assets/ids/1246.png new file mode 100644 index 0000000..11975ea Binary files /dev/null and b/assets/ids/1246.png differ diff --git a/assets/ids/1247.png b/assets/ids/1247.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1247.png differ diff --git a/assets/ids/1248.png b/assets/ids/1248.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1248.png differ diff --git a/assets/ids/1249.png b/assets/ids/1249.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1249.png differ diff --git a/assets/ids/125.png b/assets/ids/125.png new file mode 100644 index 0000000..0556c9f Binary files /dev/null and b/assets/ids/125.png differ diff --git a/assets/ids/1250.png b/assets/ids/1250.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1250.png differ diff --git a/assets/ids/1251.png b/assets/ids/1251.png new file mode 100644 index 0000000..56f0681 Binary files /dev/null and b/assets/ids/1251.png differ diff --git a/assets/ids/1252.png b/assets/ids/1252.png new file mode 100644 index 0000000..bc03060 Binary files /dev/null and b/assets/ids/1252.png differ diff --git a/assets/ids/1253.png b/assets/ids/1253.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1253.png differ diff --git a/assets/ids/1254.png b/assets/ids/1254.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1254.png differ diff --git a/assets/ids/1255.png b/assets/ids/1255.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1255.png differ diff --git a/assets/ids/1256.png b/assets/ids/1256.png new file mode 100644 index 0000000..dd59c2f Binary files /dev/null and b/assets/ids/1256.png differ diff --git a/assets/ids/1257.png b/assets/ids/1257.png new file mode 100644 index 0000000..867c3b1 Binary files /dev/null and b/assets/ids/1257.png differ diff --git a/assets/ids/1258.png b/assets/ids/1258.png new file mode 100644 index 0000000..dd59c2f Binary files /dev/null and b/assets/ids/1258.png differ diff --git a/assets/ids/1259.png b/assets/ids/1259.png new file mode 100644 index 0000000..867c3b1 Binary files /dev/null and b/assets/ids/1259.png differ diff --git a/assets/ids/126.png b/assets/ids/126.png new file mode 100644 index 0000000..2a070bb Binary files /dev/null and b/assets/ids/126.png differ diff --git a/assets/ids/1260.png b/assets/ids/1260.png new file mode 100644 index 0000000..bc0e485 Binary files /dev/null and b/assets/ids/1260.png differ diff --git a/assets/ids/1261.png b/assets/ids/1261.png new file mode 100644 index 0000000..242d207 Binary files /dev/null and b/assets/ids/1261.png differ diff --git a/assets/ids/1262.png b/assets/ids/1262.png new file mode 100644 index 0000000..87f131d Binary files /dev/null and b/assets/ids/1262.png differ diff --git a/assets/ids/1263.png b/assets/ids/1263.png new file mode 100644 index 0000000..467cfc4 Binary files /dev/null and b/assets/ids/1263.png differ diff --git a/assets/ids/1264.png b/assets/ids/1264.png new file mode 100644 index 0000000..2f8c528 Binary files /dev/null and b/assets/ids/1264.png differ diff --git a/assets/ids/1265.png b/assets/ids/1265.png new file mode 100644 index 0000000..4b12341 Binary files /dev/null and b/assets/ids/1265.png differ diff --git a/assets/ids/1266.png b/assets/ids/1266.png new file mode 100644 index 0000000..daadf0a Binary files /dev/null and b/assets/ids/1266.png differ diff --git a/assets/ids/1267.png b/assets/ids/1267.png new file mode 100644 index 0000000..45ecf44 Binary files /dev/null and b/assets/ids/1267.png differ diff --git a/assets/ids/1268.png b/assets/ids/1268.png new file mode 100644 index 0000000..69d884c Binary files /dev/null and b/assets/ids/1268.png differ diff --git a/assets/ids/1269.png b/assets/ids/1269.png new file mode 100644 index 0000000..34e5d24 Binary files /dev/null and b/assets/ids/1269.png differ diff --git a/assets/ids/127.png b/assets/ids/127.png new file mode 100644 index 0000000..8dd3304 Binary files /dev/null and b/assets/ids/127.png differ diff --git a/assets/ids/1270.png b/assets/ids/1270.png new file mode 100644 index 0000000..d0716ad Binary files /dev/null and b/assets/ids/1270.png differ diff --git a/assets/ids/1271.png b/assets/ids/1271.png new file mode 100644 index 0000000..75fa2fe Binary files /dev/null and b/assets/ids/1271.png differ diff --git a/assets/ids/1272.png b/assets/ids/1272.png new file mode 100644 index 0000000..e9486a1 Binary files /dev/null and b/assets/ids/1272.png differ diff --git a/assets/ids/1273.png b/assets/ids/1273.png new file mode 100644 index 0000000..da6d840 Binary files /dev/null and b/assets/ids/1273.png differ diff --git a/assets/ids/1274.png b/assets/ids/1274.png new file mode 100644 index 0000000..573b53a Binary files /dev/null and b/assets/ids/1274.png differ diff --git a/assets/ids/1275.png b/assets/ids/1275.png new file mode 100644 index 0000000..2ef32f3 Binary files /dev/null and b/assets/ids/1275.png differ diff --git a/assets/ids/1276.png b/assets/ids/1276.png new file mode 100644 index 0000000..663e037 Binary files /dev/null and b/assets/ids/1276.png differ diff --git a/assets/ids/1277.png b/assets/ids/1277.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1277.png differ diff --git a/assets/ids/1278.png b/assets/ids/1278.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1278.png differ diff --git a/assets/ids/1279.png b/assets/ids/1279.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1279.png differ diff --git a/assets/ids/128.png b/assets/ids/128.png new file mode 100644 index 0000000..c899ea1 Binary files /dev/null and b/assets/ids/128.png differ diff --git a/assets/ids/1280.png b/assets/ids/1280.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1280.png differ diff --git a/assets/ids/1281.png b/assets/ids/1281.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1281.png differ diff --git a/assets/ids/1282.png b/assets/ids/1282.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1282.png differ diff --git a/assets/ids/1283.png b/assets/ids/1283.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1283.png differ diff --git a/assets/ids/1284.png b/assets/ids/1284.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1284.png differ diff --git a/assets/ids/1285.png b/assets/ids/1285.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1285.png differ diff --git a/assets/ids/1286.png b/assets/ids/1286.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1286.png differ diff --git a/assets/ids/1287.png b/assets/ids/1287.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1287.png differ diff --git a/assets/ids/1288.png b/assets/ids/1288.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1288.png differ diff --git a/assets/ids/1289.png b/assets/ids/1289.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1289.png differ diff --git a/assets/ids/129.png b/assets/ids/129.png new file mode 100644 index 0000000..ee1ea85 Binary files /dev/null and b/assets/ids/129.png differ diff --git a/assets/ids/1290.png b/assets/ids/1290.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/1290.png differ diff --git a/assets/ids/1291.png b/assets/ids/1291.png new file mode 100644 index 0000000..8db0687 Binary files /dev/null and b/assets/ids/1291.png differ diff --git a/assets/ids/1292.png b/assets/ids/1292.png new file mode 100644 index 0000000..c5d6f4f Binary files /dev/null and b/assets/ids/1292.png differ diff --git a/assets/ids/1293.png b/assets/ids/1293.png new file mode 100644 index 0000000..78353a2 Binary files /dev/null and b/assets/ids/1293.png differ diff --git a/assets/ids/1294.png b/assets/ids/1294.png new file mode 100644 index 0000000..d9925ca Binary files /dev/null and b/assets/ids/1294.png differ diff --git a/assets/ids/1295.png b/assets/ids/1295.png new file mode 100644 index 0000000..1fa0a38 Binary files /dev/null and b/assets/ids/1295.png differ diff --git a/assets/ids/1296.png b/assets/ids/1296.png new file mode 100644 index 0000000..22faa56 Binary files /dev/null and b/assets/ids/1296.png differ diff --git a/assets/ids/1297.png b/assets/ids/1297.png new file mode 100644 index 0000000..a5282be Binary files /dev/null and b/assets/ids/1297.png differ diff --git a/assets/ids/1298.png b/assets/ids/1298.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/1298.png differ diff --git a/assets/ids/1299.png b/assets/ids/1299.png new file mode 100644 index 0000000..7df913b Binary files /dev/null and b/assets/ids/1299.png differ diff --git a/assets/ids/13.png b/assets/ids/13.png new file mode 100644 index 0000000..7bc18c2 Binary files /dev/null and b/assets/ids/13.png differ diff --git a/assets/ids/130.png b/assets/ids/130.png new file mode 100644 index 0000000..000bc73 Binary files /dev/null and b/assets/ids/130.png differ diff --git a/assets/ids/1300.png b/assets/ids/1300.png new file mode 100644 index 0000000..35ab1f8 Binary files /dev/null and b/assets/ids/1300.png differ diff --git a/assets/ids/1301.png b/assets/ids/1301.png new file mode 100644 index 0000000..2e754e5 Binary files /dev/null and b/assets/ids/1301.png differ diff --git a/assets/ids/1302.png b/assets/ids/1302.png new file mode 100644 index 0000000..b2e25a0 Binary files /dev/null and b/assets/ids/1302.png differ diff --git a/assets/ids/1303.png b/assets/ids/1303.png new file mode 100644 index 0000000..ac40937 Binary files /dev/null and b/assets/ids/1303.png differ diff --git a/assets/ids/1304.png b/assets/ids/1304.png new file mode 100644 index 0000000..b8507aa Binary files /dev/null and b/assets/ids/1304.png differ diff --git a/assets/ids/1305.png b/assets/ids/1305.png new file mode 100644 index 0000000..e87ba79 Binary files /dev/null and b/assets/ids/1305.png differ diff --git a/assets/ids/1306.png b/assets/ids/1306.png new file mode 100644 index 0000000..04e1f5b Binary files /dev/null and b/assets/ids/1306.png differ diff --git a/assets/ids/1307.png b/assets/ids/1307.png new file mode 100644 index 0000000..04e3197 Binary files /dev/null and b/assets/ids/1307.png differ diff --git a/assets/ids/1308.png b/assets/ids/1308.png new file mode 100644 index 0000000..32544b7 Binary files /dev/null and b/assets/ids/1308.png differ diff --git a/assets/ids/1309.png b/assets/ids/1309.png new file mode 100644 index 0000000..055722f Binary files /dev/null and b/assets/ids/1309.png differ diff --git a/assets/ids/131.png b/assets/ids/131.png new file mode 100644 index 0000000..1c0cfa7 Binary files /dev/null and b/assets/ids/131.png differ diff --git a/assets/ids/1310.png b/assets/ids/1310.png new file mode 100644 index 0000000..7df913b Binary files /dev/null and b/assets/ids/1310.png differ diff --git a/assets/ids/1311.png b/assets/ids/1311.png new file mode 100644 index 0000000..35ab1f8 Binary files /dev/null and b/assets/ids/1311.png differ diff --git a/assets/ids/1312.png b/assets/ids/1312.png new file mode 100644 index 0000000..2e754e5 Binary files /dev/null and b/assets/ids/1312.png differ diff --git a/assets/ids/1313.png b/assets/ids/1313.png new file mode 100644 index 0000000..b2e25a0 Binary files /dev/null and b/assets/ids/1313.png differ diff --git a/assets/ids/1314.png b/assets/ids/1314.png new file mode 100644 index 0000000..ac40937 Binary files /dev/null and b/assets/ids/1314.png differ diff --git a/assets/ids/1315.png b/assets/ids/1315.png new file mode 100644 index 0000000..b8507aa Binary files /dev/null and b/assets/ids/1315.png differ diff --git a/assets/ids/1316.png b/assets/ids/1316.png new file mode 100644 index 0000000..e87ba79 Binary files /dev/null and b/assets/ids/1316.png differ diff --git a/assets/ids/1317.png b/assets/ids/1317.png new file mode 100644 index 0000000..04e1f5b Binary files /dev/null and b/assets/ids/1317.png differ diff --git a/assets/ids/1318.png b/assets/ids/1318.png new file mode 100644 index 0000000..04e3197 Binary files /dev/null and b/assets/ids/1318.png differ diff --git a/assets/ids/1319.png b/assets/ids/1319.png new file mode 100644 index 0000000..32544b7 Binary files /dev/null and b/assets/ids/1319.png differ diff --git a/assets/ids/132.png b/assets/ids/132.png new file mode 100644 index 0000000..0bf1681 Binary files /dev/null and b/assets/ids/132.png differ diff --git a/assets/ids/1320.png b/assets/ids/1320.png new file mode 100644 index 0000000..055722f Binary files /dev/null and b/assets/ids/1320.png differ diff --git a/assets/ids/1322.png b/assets/ids/1322.png new file mode 100644 index 0000000..e8b3151 Binary files /dev/null and b/assets/ids/1322.png differ diff --git a/assets/ids/1325.png b/assets/ids/1325.png new file mode 100644 index 0000000..63ccd8a Binary files /dev/null and b/assets/ids/1325.png differ diff --git a/assets/ids/1326.png b/assets/ids/1326.png new file mode 100644 index 0000000..db1d5de Binary files /dev/null and b/assets/ids/1326.png differ diff --git a/assets/ids/1329.png b/assets/ids/1329.png new file mode 100644 index 0000000..847a92b Binary files /dev/null and b/assets/ids/1329.png differ diff --git a/assets/ids/133.png b/assets/ids/133.png new file mode 100644 index 0000000..9196a6f Binary files /dev/null and b/assets/ids/133.png differ diff --git a/assets/ids/1330.png b/assets/ids/1330.png new file mode 100644 index 0000000..f4acfca Binary files /dev/null and b/assets/ids/1330.png differ diff --git a/assets/ids/1331.png b/assets/ids/1331.png new file mode 100644 index 0000000..e24cc32 Binary files /dev/null and b/assets/ids/1331.png differ diff --git a/assets/ids/1332.png b/assets/ids/1332.png new file mode 100644 index 0000000..0b84539 Binary files /dev/null and b/assets/ids/1332.png differ diff --git a/assets/ids/1333.png b/assets/ids/1333.png new file mode 100644 index 0000000..49cfe40 Binary files /dev/null and b/assets/ids/1333.png differ diff --git a/assets/ids/1334.png b/assets/ids/1334.png new file mode 100644 index 0000000..a00fabc Binary files /dev/null and b/assets/ids/1334.png differ diff --git a/assets/ids/1338.png b/assets/ids/1338.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1338.png differ diff --git a/assets/ids/1339.png b/assets/ids/1339.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1339.png differ diff --git a/assets/ids/134.png b/assets/ids/134.png new file mode 100644 index 0000000..6713049 Binary files /dev/null and b/assets/ids/134.png differ diff --git a/assets/ids/1340.png b/assets/ids/1340.png new file mode 100644 index 0000000..fad7fd0 Binary files /dev/null and b/assets/ids/1340.png differ diff --git a/assets/ids/1341.png b/assets/ids/1341.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1341.png differ diff --git a/assets/ids/1342.png b/assets/ids/1342.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1342.png differ diff --git a/assets/ids/1343.png b/assets/ids/1343.png new file mode 100644 index 0000000..39cdf87 Binary files /dev/null and b/assets/ids/1343.png differ diff --git a/assets/ids/1344.png b/assets/ids/1344.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1344.png differ diff --git a/assets/ids/1345.png b/assets/ids/1345.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1345.png differ diff --git a/assets/ids/1346.png b/assets/ids/1346.png new file mode 100644 index 0000000..9bbbcb0 Binary files /dev/null and b/assets/ids/1346.png differ diff --git a/assets/ids/1347.png b/assets/ids/1347.png new file mode 100644 index 0000000..2053006 Binary files /dev/null and b/assets/ids/1347.png differ diff --git a/assets/ids/1348.png b/assets/ids/1348.png new file mode 100644 index 0000000..ea43e0d Binary files /dev/null and b/assets/ids/1348.png differ diff --git a/assets/ids/1349.png b/assets/ids/1349.png new file mode 100644 index 0000000..7440c55 Binary files /dev/null and b/assets/ids/1349.png differ diff --git a/assets/ids/135.png b/assets/ids/135.png new file mode 100644 index 0000000..4fb9307 Binary files /dev/null and b/assets/ids/135.png differ diff --git a/assets/ids/1350.png b/assets/ids/1350.png new file mode 100644 index 0000000..284585d Binary files /dev/null and b/assets/ids/1350.png differ diff --git a/assets/ids/1351.png b/assets/ids/1351.png new file mode 100644 index 0000000..31d7c70 Binary files /dev/null and b/assets/ids/1351.png differ diff --git a/assets/ids/1352.png b/assets/ids/1352.png new file mode 100644 index 0000000..4792737 Binary files /dev/null and b/assets/ids/1352.png differ diff --git a/assets/ids/1353.png b/assets/ids/1353.png new file mode 100644 index 0000000..767de0f Binary files /dev/null and b/assets/ids/1353.png differ diff --git a/assets/ids/1354.png b/assets/ids/1354.png new file mode 100644 index 0000000..9225f4d Binary files /dev/null and b/assets/ids/1354.png differ diff --git a/assets/ids/1355.png b/assets/ids/1355.png new file mode 100644 index 0000000..bf9d7a6 Binary files /dev/null and b/assets/ids/1355.png differ diff --git a/assets/ids/1356.png b/assets/ids/1356.png new file mode 100644 index 0000000..0230afb Binary files /dev/null and b/assets/ids/1356.png differ diff --git a/assets/ids/1357.png b/assets/ids/1357.png new file mode 100644 index 0000000..4d55e1c Binary files /dev/null and b/assets/ids/1357.png differ diff --git a/assets/ids/1358.png b/assets/ids/1358.png new file mode 100644 index 0000000..5ec2cba Binary files /dev/null and b/assets/ids/1358.png differ diff --git a/assets/ids/1359.png b/assets/ids/1359.png new file mode 100644 index 0000000..cc14770 Binary files /dev/null and b/assets/ids/1359.png differ diff --git a/assets/ids/136.png b/assets/ids/136.png new file mode 100644 index 0000000..b7ba7b5 Binary files /dev/null and b/assets/ids/136.png differ diff --git a/assets/ids/1360.png b/assets/ids/1360.png new file mode 100644 index 0000000..a07f1d3 Binary files /dev/null and b/assets/ids/1360.png differ diff --git a/assets/ids/1361.png b/assets/ids/1361.png new file mode 100644 index 0000000..4fe058c Binary files /dev/null and b/assets/ids/1361.png differ diff --git a/assets/ids/1362.png b/assets/ids/1362.png new file mode 100644 index 0000000..e2e204a Binary files /dev/null and b/assets/ids/1362.png differ diff --git a/assets/ids/1363.png b/assets/ids/1363.png new file mode 100644 index 0000000..2a603e5 Binary files /dev/null and b/assets/ids/1363.png differ diff --git a/assets/ids/1364.png b/assets/ids/1364.png new file mode 100644 index 0000000..7f2cdd3 Binary files /dev/null and b/assets/ids/1364.png differ diff --git a/assets/ids/1365.png b/assets/ids/1365.png new file mode 100644 index 0000000..9cd6db3 Binary files /dev/null and b/assets/ids/1365.png differ diff --git a/assets/ids/1366.png b/assets/ids/1366.png new file mode 100644 index 0000000..c8f9e9b Binary files /dev/null and b/assets/ids/1366.png differ diff --git a/assets/ids/1367.png b/assets/ids/1367.png new file mode 100644 index 0000000..1a5fb32 Binary files /dev/null and b/assets/ids/1367.png differ diff --git a/assets/ids/1368.png b/assets/ids/1368.png new file mode 100644 index 0000000..657ef22 Binary files /dev/null and b/assets/ids/1368.png differ diff --git a/assets/ids/1369.png b/assets/ids/1369.png new file mode 100644 index 0000000..6137c6d Binary files /dev/null and b/assets/ids/1369.png differ diff --git a/assets/ids/137.png b/assets/ids/137.png new file mode 100644 index 0000000..a72a2ef Binary files /dev/null and b/assets/ids/137.png differ diff --git a/assets/ids/1370.png b/assets/ids/1370.png new file mode 100644 index 0000000..8c0dd49 Binary files /dev/null and b/assets/ids/1370.png differ diff --git a/assets/ids/1371.png b/assets/ids/1371.png new file mode 100644 index 0000000..e25b627 Binary files /dev/null and b/assets/ids/1371.png differ diff --git a/assets/ids/1372.png b/assets/ids/1372.png new file mode 100644 index 0000000..a371483 Binary files /dev/null and b/assets/ids/1372.png differ diff --git a/assets/ids/1373.png b/assets/ids/1373.png new file mode 100644 index 0000000..b6d8469 Binary files /dev/null and b/assets/ids/1373.png differ diff --git a/assets/ids/1374.png b/assets/ids/1374.png new file mode 100644 index 0000000..15e55c7 Binary files /dev/null and b/assets/ids/1374.png differ diff --git a/assets/ids/1375.png b/assets/ids/1375.png new file mode 100644 index 0000000..4913df0 Binary files /dev/null and b/assets/ids/1375.png differ diff --git a/assets/ids/1376.png b/assets/ids/1376.png new file mode 100644 index 0000000..603f5cc Binary files /dev/null and b/assets/ids/1376.png differ diff --git a/assets/ids/1377.png b/assets/ids/1377.png new file mode 100644 index 0000000..c413c43 Binary files /dev/null and b/assets/ids/1377.png differ diff --git a/assets/ids/1378.png b/assets/ids/1378.png new file mode 100644 index 0000000..69b17ca Binary files /dev/null and b/assets/ids/1378.png differ diff --git a/assets/ids/1379.png b/assets/ids/1379.png new file mode 100644 index 0000000..896581b Binary files /dev/null and b/assets/ids/1379.png differ diff --git a/assets/ids/138.png b/assets/ids/138.png new file mode 100644 index 0000000..c0029db Binary files /dev/null and b/assets/ids/138.png differ diff --git a/assets/ids/1380.png b/assets/ids/1380.png new file mode 100644 index 0000000..30861d3 Binary files /dev/null and b/assets/ids/1380.png differ diff --git a/assets/ids/1381.png b/assets/ids/1381.png new file mode 100644 index 0000000..07b1db7 Binary files /dev/null and b/assets/ids/1381.png differ diff --git a/assets/ids/1382.png b/assets/ids/1382.png new file mode 100644 index 0000000..f742ccd Binary files /dev/null and b/assets/ids/1382.png differ diff --git a/assets/ids/1383.png b/assets/ids/1383.png new file mode 100644 index 0000000..9a349d2 Binary files /dev/null and b/assets/ids/1383.png differ diff --git a/assets/ids/1384.png b/assets/ids/1384.png new file mode 100644 index 0000000..8e15c21 Binary files /dev/null and b/assets/ids/1384.png differ diff --git a/assets/ids/1385.png b/assets/ids/1385.png new file mode 100644 index 0000000..996cf0c Binary files /dev/null and b/assets/ids/1385.png differ diff --git a/assets/ids/1386.png b/assets/ids/1386.png new file mode 100644 index 0000000..5b6eed4 Binary files /dev/null and b/assets/ids/1386.png differ diff --git a/assets/ids/1387.png b/assets/ids/1387.png new file mode 100644 index 0000000..7e7f171 Binary files /dev/null and b/assets/ids/1387.png differ diff --git a/assets/ids/1388.png b/assets/ids/1388.png new file mode 100644 index 0000000..bb9adb6 Binary files /dev/null and b/assets/ids/1388.png differ diff --git a/assets/ids/1389.png b/assets/ids/1389.png new file mode 100644 index 0000000..06d28c1 Binary files /dev/null and b/assets/ids/1389.png differ diff --git a/assets/ids/139.png b/assets/ids/139.png new file mode 100644 index 0000000..f1157fb Binary files /dev/null and b/assets/ids/139.png differ diff --git a/assets/ids/1390.png b/assets/ids/1390.png new file mode 100644 index 0000000..eba97cb Binary files /dev/null and b/assets/ids/1390.png differ diff --git a/assets/ids/1391.png b/assets/ids/1391.png new file mode 100644 index 0000000..88d5b97 Binary files /dev/null and b/assets/ids/1391.png differ diff --git a/assets/ids/1392.png b/assets/ids/1392.png new file mode 100644 index 0000000..43b2fbe Binary files /dev/null and b/assets/ids/1392.png differ diff --git a/assets/ids/1393.png b/assets/ids/1393.png new file mode 100644 index 0000000..dbdaa4a Binary files /dev/null and b/assets/ids/1393.png differ diff --git a/assets/ids/1394.png b/assets/ids/1394.png new file mode 100644 index 0000000..239702f Binary files /dev/null and b/assets/ids/1394.png differ diff --git a/assets/ids/1395.png b/assets/ids/1395.png new file mode 100644 index 0000000..f503a75 Binary files /dev/null and b/assets/ids/1395.png differ diff --git a/assets/ids/140.png b/assets/ids/140.png new file mode 100644 index 0000000..621125e Binary files /dev/null and b/assets/ids/140.png differ diff --git a/assets/ids/141.png b/assets/ids/141.png new file mode 100644 index 0000000..0f06387 Binary files /dev/null and b/assets/ids/141.png differ diff --git a/assets/ids/143.png b/assets/ids/143.png new file mode 100644 index 0000000..763c3c4 Binary files /dev/null and b/assets/ids/143.png differ diff --git a/assets/ids/1431.png b/assets/ids/1431.png new file mode 100644 index 0000000..03d76cc Binary files /dev/null and b/assets/ids/1431.png differ diff --git a/assets/ids/1432.png b/assets/ids/1432.png new file mode 100644 index 0000000..34cdf2f Binary files /dev/null and b/assets/ids/1432.png differ diff --git a/assets/ids/1433.png b/assets/ids/1433.png new file mode 100644 index 0000000..e959604 Binary files /dev/null and b/assets/ids/1433.png differ diff --git a/assets/ids/1434.png b/assets/ids/1434.png new file mode 100644 index 0000000..26df859 Binary files /dev/null and b/assets/ids/1434.png differ diff --git a/assets/ids/1435.png b/assets/ids/1435.png new file mode 100644 index 0000000..a986219 Binary files /dev/null and b/assets/ids/1435.png differ diff --git a/assets/ids/1436.png b/assets/ids/1436.png new file mode 100644 index 0000000..6cecd28 Binary files /dev/null and b/assets/ids/1436.png differ diff --git a/assets/ids/1437.png b/assets/ids/1437.png new file mode 100644 index 0000000..03f4088 Binary files /dev/null and b/assets/ids/1437.png differ diff --git a/assets/ids/1438.png b/assets/ids/1438.png new file mode 100644 index 0000000..19b6103 Binary files /dev/null and b/assets/ids/1438.png differ diff --git a/assets/ids/1439.png b/assets/ids/1439.png new file mode 100644 index 0000000..3bc8c7e Binary files /dev/null and b/assets/ids/1439.png differ diff --git a/assets/ids/144.png b/assets/ids/144.png new file mode 100644 index 0000000..1b0bdb2 Binary files /dev/null and b/assets/ids/144.png differ diff --git a/assets/ids/1440.png b/assets/ids/1440.png new file mode 100644 index 0000000..6fe09b6 Binary files /dev/null and b/assets/ids/1440.png differ diff --git a/assets/ids/1441.png b/assets/ids/1441.png new file mode 100644 index 0000000..79e440c Binary files /dev/null and b/assets/ids/1441.png differ diff --git a/assets/ids/1442.png b/assets/ids/1442.png new file mode 100644 index 0000000..aa2be9f Binary files /dev/null and b/assets/ids/1442.png differ diff --git a/assets/ids/1443.png b/assets/ids/1443.png new file mode 100644 index 0000000..0950866 Binary files /dev/null and b/assets/ids/1443.png differ diff --git a/assets/ids/1444.png b/assets/ids/1444.png new file mode 100644 index 0000000..ad352a0 Binary files /dev/null and b/assets/ids/1444.png differ diff --git a/assets/ids/1445.png b/assets/ids/1445.png new file mode 100644 index 0000000..f85a26c Binary files /dev/null and b/assets/ids/1445.png differ diff --git a/assets/ids/1446.png b/assets/ids/1446.png new file mode 100644 index 0000000..6d00d8e Binary files /dev/null and b/assets/ids/1446.png differ diff --git a/assets/ids/1447.png b/assets/ids/1447.png new file mode 100644 index 0000000..5bed678 Binary files /dev/null and b/assets/ids/1447.png differ diff --git a/assets/ids/1448.png b/assets/ids/1448.png new file mode 100644 index 0000000..7eaf31d Binary files /dev/null and b/assets/ids/1448.png differ diff --git a/assets/ids/1449.png b/assets/ids/1449.png new file mode 100644 index 0000000..5eefe00 Binary files /dev/null and b/assets/ids/1449.png differ diff --git a/assets/ids/145.png b/assets/ids/145.png new file mode 100644 index 0000000..46e1ca9 Binary files /dev/null and b/assets/ids/145.png differ diff --git a/assets/ids/1450.png b/assets/ids/1450.png new file mode 100644 index 0000000..cbcc2b8 Binary files /dev/null and b/assets/ids/1450.png differ diff --git a/assets/ids/1451.png b/assets/ids/1451.png new file mode 100644 index 0000000..7b32388 Binary files /dev/null and b/assets/ids/1451.png differ diff --git a/assets/ids/1452.png b/assets/ids/1452.png new file mode 100644 index 0000000..b8b9d60 Binary files /dev/null and b/assets/ids/1452.png differ diff --git a/assets/ids/1453.png b/assets/ids/1453.png new file mode 100644 index 0000000..402330e Binary files /dev/null and b/assets/ids/1453.png differ diff --git a/assets/ids/1454.png b/assets/ids/1454.png new file mode 100644 index 0000000..5a0eba2 Binary files /dev/null and b/assets/ids/1454.png differ diff --git a/assets/ids/1455.png b/assets/ids/1455.png new file mode 100644 index 0000000..937a885 Binary files /dev/null and b/assets/ids/1455.png differ diff --git a/assets/ids/1456.png b/assets/ids/1456.png new file mode 100644 index 0000000..5e3d652 Binary files /dev/null and b/assets/ids/1456.png differ diff --git a/assets/ids/1457.png b/assets/ids/1457.png new file mode 100644 index 0000000..4e6fed7 Binary files /dev/null and b/assets/ids/1457.png differ diff --git a/assets/ids/1458.png b/assets/ids/1458.png new file mode 100644 index 0000000..edaee38 Binary files /dev/null and b/assets/ids/1458.png differ diff --git a/assets/ids/1459.png b/assets/ids/1459.png new file mode 100644 index 0000000..2079ed2 Binary files /dev/null and b/assets/ids/1459.png differ diff --git a/assets/ids/146.png b/assets/ids/146.png new file mode 100644 index 0000000..6beaac3 Binary files /dev/null and b/assets/ids/146.png differ diff --git a/assets/ids/1460.png b/assets/ids/1460.png new file mode 100644 index 0000000..c82b5a3 Binary files /dev/null and b/assets/ids/1460.png differ diff --git a/assets/ids/1461.png b/assets/ids/1461.png new file mode 100644 index 0000000..dd5086a Binary files /dev/null and b/assets/ids/1461.png differ diff --git a/assets/ids/1462.png b/assets/ids/1462.png new file mode 100644 index 0000000..7f2b969 Binary files /dev/null and b/assets/ids/1462.png differ diff --git a/assets/ids/1463.png b/assets/ids/1463.png new file mode 100644 index 0000000..f443b2d Binary files /dev/null and b/assets/ids/1463.png differ diff --git a/assets/ids/1464.png b/assets/ids/1464.png new file mode 100644 index 0000000..3ee949a Binary files /dev/null and b/assets/ids/1464.png differ diff --git a/assets/ids/147.png b/assets/ids/147.png new file mode 100644 index 0000000..ab532e1 Binary files /dev/null and b/assets/ids/147.png differ diff --git a/assets/ids/1471.png b/assets/ids/1471.png new file mode 100644 index 0000000..55f6605 Binary files /dev/null and b/assets/ids/1471.png differ diff --git a/assets/ids/1472.png b/assets/ids/1472.png new file mode 100644 index 0000000..8a908e1 Binary files /dev/null and b/assets/ids/1472.png differ diff --git a/assets/ids/1473.png b/assets/ids/1473.png new file mode 100644 index 0000000..0c6866a Binary files /dev/null and b/assets/ids/1473.png differ diff --git a/assets/ids/148.png b/assets/ids/148.png new file mode 100644 index 0000000..f641582 Binary files /dev/null and b/assets/ids/148.png differ diff --git a/assets/ids/149.png b/assets/ids/149.png new file mode 100644 index 0000000..6518486 Binary files /dev/null and b/assets/ids/149.png differ diff --git a/assets/ids/1496.png b/assets/ids/1496.png new file mode 100644 index 0000000..78fa17a Binary files /dev/null and b/assets/ids/1496.png differ diff --git a/assets/ids/15.png b/assets/ids/15.png new file mode 100644 index 0000000..b00d0be Binary files /dev/null and b/assets/ids/15.png differ diff --git a/assets/ids/150.png b/assets/ids/150.png new file mode 100644 index 0000000..427ab2a Binary files /dev/null and b/assets/ids/150.png differ diff --git a/assets/ids/1507.png b/assets/ids/1507.png new file mode 100644 index 0000000..cc86c23 Binary files /dev/null and b/assets/ids/1507.png differ diff --git a/assets/ids/151.png b/assets/ids/151.png new file mode 100644 index 0000000..ec5b32c Binary files /dev/null and b/assets/ids/151.png differ diff --git a/assets/ids/1510.png b/assets/ids/1510.png new file mode 100644 index 0000000..164b5ff Binary files /dev/null and b/assets/ids/1510.png differ diff --git a/assets/ids/1511.png b/assets/ids/1511.png new file mode 100644 index 0000000..e544de7 Binary files /dev/null and b/assets/ids/1511.png differ diff --git a/assets/ids/1512.png b/assets/ids/1512.png new file mode 100644 index 0000000..3b0c3cf Binary files /dev/null and b/assets/ids/1512.png differ diff --git a/assets/ids/1513.png b/assets/ids/1513.png new file mode 100644 index 0000000..9354a95 Binary files /dev/null and b/assets/ids/1513.png differ diff --git a/assets/ids/1514.png b/assets/ids/1514.png new file mode 100644 index 0000000..057b431 Binary files /dev/null and b/assets/ids/1514.png differ diff --git a/assets/ids/1515.png b/assets/ids/1515.png new file mode 100644 index 0000000..3527b37 Binary files /dev/null and b/assets/ids/1515.png differ diff --git a/assets/ids/1516.png b/assets/ids/1516.png new file mode 100644 index 0000000..8a759bf Binary files /dev/null and b/assets/ids/1516.png differ diff --git a/assets/ids/1517.png b/assets/ids/1517.png new file mode 100644 index 0000000..57fa71d Binary files /dev/null and b/assets/ids/1517.png differ diff --git a/assets/ids/1518.png b/assets/ids/1518.png new file mode 100644 index 0000000..208a271 Binary files /dev/null and b/assets/ids/1518.png differ diff --git a/assets/ids/1519.png b/assets/ids/1519.png new file mode 100644 index 0000000..f37029a Binary files /dev/null and b/assets/ids/1519.png differ diff --git a/assets/ids/152.png b/assets/ids/152.png new file mode 100644 index 0000000..8dfe16f Binary files /dev/null and b/assets/ids/152.png differ diff --git a/assets/ids/1520.png b/assets/ids/1520.png new file mode 100644 index 0000000..f2a2918 Binary files /dev/null and b/assets/ids/1520.png differ diff --git a/assets/ids/1521.png b/assets/ids/1521.png new file mode 100644 index 0000000..91e7e66 Binary files /dev/null and b/assets/ids/1521.png differ diff --git a/assets/ids/1522.png b/assets/ids/1522.png new file mode 100644 index 0000000..4d6842f Binary files /dev/null and b/assets/ids/1522.png differ diff --git a/assets/ids/1523.png b/assets/ids/1523.png new file mode 100644 index 0000000..fec644f Binary files /dev/null and b/assets/ids/1523.png differ diff --git a/assets/ids/1524.png b/assets/ids/1524.png new file mode 100644 index 0000000..eaf5d65 Binary files /dev/null and b/assets/ids/1524.png differ diff --git a/assets/ids/1525.png b/assets/ids/1525.png new file mode 100644 index 0000000..b1e05a2 Binary files /dev/null and b/assets/ids/1525.png differ diff --git a/assets/ids/1526.png b/assets/ids/1526.png new file mode 100644 index 0000000..3e3d084 Binary files /dev/null and b/assets/ids/1526.png differ diff --git a/assets/ids/1527.png b/assets/ids/1527.png new file mode 100644 index 0000000..453646a Binary files /dev/null and b/assets/ids/1527.png differ diff --git a/assets/ids/1528.png b/assets/ids/1528.png new file mode 100644 index 0000000..2c79c30 Binary files /dev/null and b/assets/ids/1528.png differ diff --git a/assets/ids/1529.png b/assets/ids/1529.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1529.png differ diff --git a/assets/ids/153.png b/assets/ids/153.png new file mode 100644 index 0000000..33cb11a Binary files /dev/null and b/assets/ids/153.png differ diff --git a/assets/ids/1530.png b/assets/ids/1530.png new file mode 100644 index 0000000..8336546 Binary files /dev/null and b/assets/ids/1530.png differ diff --git a/assets/ids/1531.png b/assets/ids/1531.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/1531.png differ diff --git a/assets/ids/1532.png b/assets/ids/1532.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/1532.png differ diff --git a/assets/ids/1533.png b/assets/ids/1533.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/1533.png differ diff --git a/assets/ids/1534.png b/assets/ids/1534.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1534.png differ diff --git a/assets/ids/1535.png b/assets/ids/1535.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/1535.png differ diff --git a/assets/ids/1536.png b/assets/ids/1536.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/1536.png differ diff --git a/assets/ids/1537.png b/assets/ids/1537.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/1537.png differ diff --git a/assets/ids/1538.png b/assets/ids/1538.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1538.png differ diff --git a/assets/ids/1539.png b/assets/ids/1539.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1539.png differ diff --git a/assets/ids/154.png b/assets/ids/154.png new file mode 100644 index 0000000..d232157 Binary files /dev/null and b/assets/ids/154.png differ diff --git a/assets/ids/1540.png b/assets/ids/1540.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1540.png differ diff --git a/assets/ids/155.png b/assets/ids/155.png new file mode 100644 index 0000000..06eb0e0 Binary files /dev/null and b/assets/ids/155.png differ diff --git a/assets/ids/1552.png b/assets/ids/1552.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1552.png differ diff --git a/assets/ids/1553.png b/assets/ids/1553.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1553.png differ diff --git a/assets/ids/1554.png b/assets/ids/1554.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/1554.png differ diff --git a/assets/ids/1555.png b/assets/ids/1555.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/1555.png differ diff --git a/assets/ids/1556.png b/assets/ids/1556.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/1556.png differ diff --git a/assets/ids/1557.png b/assets/ids/1557.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1557.png differ diff --git a/assets/ids/1558.png b/assets/ids/1558.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/1558.png differ diff --git a/assets/ids/1559.png b/assets/ids/1559.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/1559.png differ diff --git a/assets/ids/156.png b/assets/ids/156.png new file mode 100644 index 0000000..b26c667 Binary files /dev/null and b/assets/ids/156.png differ diff --git a/assets/ids/1560.png b/assets/ids/1560.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/1560.png differ diff --git a/assets/ids/1561.png b/assets/ids/1561.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/1561.png differ diff --git a/assets/ids/1562.png b/assets/ids/1562.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/1562.png differ diff --git a/assets/ids/1563.png b/assets/ids/1563.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/1563.png differ diff --git a/assets/ids/1564.png b/assets/ids/1564.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/1564.png differ diff --git a/assets/ids/1565.png b/assets/ids/1565.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/1565.png differ diff --git a/assets/ids/1566.png b/assets/ids/1566.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/1566.png differ diff --git a/assets/ids/1567.png b/assets/ids/1567.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/1567.png differ diff --git a/assets/ids/1568.png b/assets/ids/1568.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/1568.png differ diff --git a/assets/ids/1569.png b/assets/ids/1569.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/1569.png differ diff --git a/assets/ids/157.png b/assets/ids/157.png new file mode 100644 index 0000000..34ca5ec Binary files /dev/null and b/assets/ids/157.png differ diff --git a/assets/ids/158.png b/assets/ids/158.png new file mode 100644 index 0000000..4df6dc6 Binary files /dev/null and b/assets/ids/158.png differ diff --git a/assets/ids/1582.png b/assets/ids/1582.png new file mode 100644 index 0000000..80bc32d Binary files /dev/null and b/assets/ids/1582.png differ diff --git a/assets/ids/1583.png b/assets/ids/1583.png new file mode 100644 index 0000000..8711fd9 Binary files /dev/null and b/assets/ids/1583.png differ diff --git a/assets/ids/1585.png b/assets/ids/1585.png new file mode 100644 index 0000000..a4cd98c Binary files /dev/null and b/assets/ids/1585.png differ diff --git a/assets/ids/1586.png b/assets/ids/1586.png new file mode 100644 index 0000000..ed0984a Binary files /dev/null and b/assets/ids/1586.png differ diff --git a/assets/ids/1587.png b/assets/ids/1587.png new file mode 100644 index 0000000..4ed623a Binary files /dev/null and b/assets/ids/1587.png differ diff --git a/assets/ids/1588.png b/assets/ids/1588.png new file mode 100644 index 0000000..477fe30 Binary files /dev/null and b/assets/ids/1588.png differ diff --git a/assets/ids/1589.png b/assets/ids/1589.png new file mode 100644 index 0000000..bb6121d Binary files /dev/null and b/assets/ids/1589.png differ diff --git a/assets/ids/159.png b/assets/ids/159.png new file mode 100644 index 0000000..692c512 Binary files /dev/null and b/assets/ids/159.png differ diff --git a/assets/ids/1590.png b/assets/ids/1590.png new file mode 100644 index 0000000..c0003d0 Binary files /dev/null and b/assets/ids/1590.png differ diff --git a/assets/ids/1591.png b/assets/ids/1591.png new file mode 100644 index 0000000..1f7593a Binary files /dev/null and b/assets/ids/1591.png differ diff --git a/assets/ids/1592.png b/assets/ids/1592.png new file mode 100644 index 0000000..70d2044 Binary files /dev/null and b/assets/ids/1592.png differ diff --git a/assets/ids/1593.png b/assets/ids/1593.png new file mode 100644 index 0000000..1f7593a Binary files /dev/null and b/assets/ids/1593.png differ diff --git a/assets/ids/1594.png b/assets/ids/1594.png new file mode 100644 index 0000000..573aedd Binary files /dev/null and b/assets/ids/1594.png differ diff --git a/assets/ids/1595.png b/assets/ids/1595.png new file mode 100644 index 0000000..dbe505a Binary files /dev/null and b/assets/ids/1595.png differ diff --git a/assets/ids/1596.png b/assets/ids/1596.png new file mode 100644 index 0000000..afdb9b8 Binary files /dev/null and b/assets/ids/1596.png differ diff --git a/assets/ids/1597.png b/assets/ids/1597.png new file mode 100644 index 0000000..ac7ceea Binary files /dev/null and b/assets/ids/1597.png differ diff --git a/assets/ids/1598.png b/assets/ids/1598.png new file mode 100644 index 0000000..9b297a5 Binary files /dev/null and b/assets/ids/1598.png differ diff --git a/assets/ids/1599.png b/assets/ids/1599.png new file mode 100644 index 0000000..68aca3f Binary files /dev/null and b/assets/ids/1599.png differ diff --git a/assets/ids/16.png b/assets/ids/16.png new file mode 100644 index 0000000..fb1b8a7 Binary files /dev/null and b/assets/ids/16.png differ diff --git a/assets/ids/160.png b/assets/ids/160.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/160.png differ diff --git a/assets/ids/1600.png b/assets/ids/1600.png new file mode 100644 index 0000000..5e4733c Binary files /dev/null and b/assets/ids/1600.png differ diff --git a/assets/ids/1601.png b/assets/ids/1601.png new file mode 100644 index 0000000..a19c04c Binary files /dev/null and b/assets/ids/1601.png differ diff --git a/assets/ids/1602.png b/assets/ids/1602.png new file mode 100644 index 0000000..c91d77c Binary files /dev/null and b/assets/ids/1602.png differ diff --git a/assets/ids/1603.png b/assets/ids/1603.png new file mode 100644 index 0000000..948eed7 Binary files /dev/null and b/assets/ids/1603.png differ diff --git a/assets/ids/1604.png b/assets/ids/1604.png new file mode 100644 index 0000000..0f53770 Binary files /dev/null and b/assets/ids/1604.png differ diff --git a/assets/ids/1605.png b/assets/ids/1605.png new file mode 100644 index 0000000..fc53696 Binary files /dev/null and b/assets/ids/1605.png differ diff --git a/assets/ids/1606.png b/assets/ids/1606.png new file mode 100644 index 0000000..446912a Binary files /dev/null and b/assets/ids/1606.png differ diff --git a/assets/ids/1607.png b/assets/ids/1607.png new file mode 100644 index 0000000..5b80289 Binary files /dev/null and b/assets/ids/1607.png differ diff --git a/assets/ids/1608.png b/assets/ids/1608.png new file mode 100644 index 0000000..466e473 Binary files /dev/null and b/assets/ids/1608.png differ diff --git a/assets/ids/1609.png b/assets/ids/1609.png new file mode 100644 index 0000000..f88d320 Binary files /dev/null and b/assets/ids/1609.png differ diff --git a/assets/ids/161.png b/assets/ids/161.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/161.png differ diff --git a/assets/ids/1610.png b/assets/ids/1610.png new file mode 100644 index 0000000..46401bb Binary files /dev/null and b/assets/ids/1610.png differ diff --git a/assets/ids/1611.png b/assets/ids/1611.png new file mode 100644 index 0000000..45f06d3 Binary files /dev/null and b/assets/ids/1611.png differ diff --git a/assets/ids/1612.png b/assets/ids/1612.png new file mode 100644 index 0000000..49fd07e Binary files /dev/null and b/assets/ids/1612.png differ diff --git a/assets/ids/1613.png b/assets/ids/1613.png new file mode 100644 index 0000000..cd3bfa3 Binary files /dev/null and b/assets/ids/1613.png differ diff --git a/assets/ids/1615.png b/assets/ids/1615.png new file mode 100644 index 0000000..3df346b Binary files /dev/null and b/assets/ids/1615.png differ diff --git a/assets/ids/1616.png b/assets/ids/1616.png new file mode 100644 index 0000000..1e11d32 Binary files /dev/null and b/assets/ids/1616.png differ diff --git a/assets/ids/1617.png b/assets/ids/1617.png new file mode 100644 index 0000000..f51c16a Binary files /dev/null and b/assets/ids/1617.png differ diff --git a/assets/ids/1619.png b/assets/ids/1619.png new file mode 100644 index 0000000..4722868 Binary files /dev/null and b/assets/ids/1619.png differ diff --git a/assets/ids/162.png b/assets/ids/162.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/162.png differ diff --git a/assets/ids/1620.png b/assets/ids/1620.png new file mode 100644 index 0000000..01fabd0 Binary files /dev/null and b/assets/ids/1620.png differ diff --git a/assets/ids/1621.png b/assets/ids/1621.png new file mode 100644 index 0000000..553ab6f Binary files /dev/null and b/assets/ids/1621.png differ diff --git a/assets/ids/1622.png b/assets/ids/1622.png new file mode 100644 index 0000000..9748e3c Binary files /dev/null and b/assets/ids/1622.png differ diff --git a/assets/ids/1623.png b/assets/ids/1623.png new file mode 100644 index 0000000..21fdb0e Binary files /dev/null and b/assets/ids/1623.png differ diff --git a/assets/ids/1624.png b/assets/ids/1624.png new file mode 100644 index 0000000..e7462a9 Binary files /dev/null and b/assets/ids/1624.png differ diff --git a/assets/ids/1625.png b/assets/ids/1625.png new file mode 100644 index 0000000..2d33385 Binary files /dev/null and b/assets/ids/1625.png differ diff --git a/assets/ids/1626.png b/assets/ids/1626.png new file mode 100644 index 0000000..f2ca976 Binary files /dev/null and b/assets/ids/1626.png differ diff --git a/assets/ids/1627.png b/assets/ids/1627.png new file mode 100644 index 0000000..678e77b Binary files /dev/null and b/assets/ids/1627.png differ diff --git a/assets/ids/1628.png b/assets/ids/1628.png new file mode 100644 index 0000000..4c00fc9 Binary files /dev/null and b/assets/ids/1628.png differ diff --git a/assets/ids/1629.png b/assets/ids/1629.png new file mode 100644 index 0000000..157591e Binary files /dev/null and b/assets/ids/1629.png differ diff --git a/assets/ids/163.png b/assets/ids/163.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/163.png differ diff --git a/assets/ids/1630.png b/assets/ids/1630.png new file mode 100644 index 0000000..2c5e80c Binary files /dev/null and b/assets/ids/1630.png differ diff --git a/assets/ids/1631.png b/assets/ids/1631.png new file mode 100644 index 0000000..747ba07 Binary files /dev/null and b/assets/ids/1631.png differ diff --git a/assets/ids/1632.png b/assets/ids/1632.png new file mode 100644 index 0000000..066a432 Binary files /dev/null and b/assets/ids/1632.png differ diff --git a/assets/ids/1633.png b/assets/ids/1633.png new file mode 100644 index 0000000..cad0f0b Binary files /dev/null and b/assets/ids/1633.png differ diff --git a/assets/ids/1634.png b/assets/ids/1634.png new file mode 100644 index 0000000..57d1b05 Binary files /dev/null and b/assets/ids/1634.png differ diff --git a/assets/ids/1635.png b/assets/ids/1635.png new file mode 100644 index 0000000..ae27048 Binary files /dev/null and b/assets/ids/1635.png differ diff --git a/assets/ids/1636.png b/assets/ids/1636.png new file mode 100644 index 0000000..eadcaed Binary files /dev/null and b/assets/ids/1636.png differ diff --git a/assets/ids/1637.png b/assets/ids/1637.png new file mode 100644 index 0000000..84a35a7 Binary files /dev/null and b/assets/ids/1637.png differ diff --git a/assets/ids/1638.png b/assets/ids/1638.png new file mode 100644 index 0000000..193cfe2 Binary files /dev/null and b/assets/ids/1638.png differ diff --git a/assets/ids/1639.png b/assets/ids/1639.png new file mode 100644 index 0000000..9543f36 Binary files /dev/null and b/assets/ids/1639.png differ diff --git a/assets/ids/164.png b/assets/ids/164.png new file mode 100644 index 0000000..3b7f6f7 Binary files /dev/null and b/assets/ids/164.png differ diff --git a/assets/ids/1640.png b/assets/ids/1640.png new file mode 100644 index 0000000..2054ddf Binary files /dev/null and b/assets/ids/1640.png differ diff --git a/assets/ids/1641.png b/assets/ids/1641.png new file mode 100644 index 0000000..22a283c Binary files /dev/null and b/assets/ids/1641.png differ diff --git a/assets/ids/1642.png b/assets/ids/1642.png new file mode 100644 index 0000000..a75f31c Binary files /dev/null and b/assets/ids/1642.png differ diff --git a/assets/ids/1643.png b/assets/ids/1643.png new file mode 100644 index 0000000..6c53a4e Binary files /dev/null and b/assets/ids/1643.png differ diff --git a/assets/ids/1644.png b/assets/ids/1644.png new file mode 100644 index 0000000..d38638e Binary files /dev/null and b/assets/ids/1644.png differ diff --git a/assets/ids/1645.png b/assets/ids/1645.png new file mode 100644 index 0000000..0f99e0f Binary files /dev/null and b/assets/ids/1645.png differ diff --git a/assets/ids/1646.png b/assets/ids/1646.png new file mode 100644 index 0000000..c9e4883 Binary files /dev/null and b/assets/ids/1646.png differ diff --git a/assets/ids/1647.png b/assets/ids/1647.png new file mode 100644 index 0000000..239c7e9 Binary files /dev/null and b/assets/ids/1647.png differ diff --git a/assets/ids/1648.png b/assets/ids/1648.png new file mode 100644 index 0000000..3d68e3f Binary files /dev/null and b/assets/ids/1648.png differ diff --git a/assets/ids/1649.png b/assets/ids/1649.png new file mode 100644 index 0000000..297b2f6 Binary files /dev/null and b/assets/ids/1649.png differ diff --git a/assets/ids/165.png b/assets/ids/165.png new file mode 100644 index 0000000..34c4351 Binary files /dev/null and b/assets/ids/165.png differ diff --git a/assets/ids/1650.png b/assets/ids/1650.png new file mode 100644 index 0000000..8a619c9 Binary files /dev/null and b/assets/ids/1650.png differ diff --git a/assets/ids/1651.png b/assets/ids/1651.png new file mode 100644 index 0000000..642434a Binary files /dev/null and b/assets/ids/1651.png differ diff --git a/assets/ids/1652.png b/assets/ids/1652.png new file mode 100644 index 0000000..645fa16 Binary files /dev/null and b/assets/ids/1652.png differ diff --git a/assets/ids/1653.png b/assets/ids/1653.png new file mode 100644 index 0000000..6cdecbe Binary files /dev/null and b/assets/ids/1653.png differ diff --git a/assets/ids/1654.png b/assets/ids/1654.png new file mode 100644 index 0000000..36ecab2 Binary files /dev/null and b/assets/ids/1654.png differ diff --git a/assets/ids/1655.png b/assets/ids/1655.png new file mode 100644 index 0000000..bed9803 Binary files /dev/null and b/assets/ids/1655.png differ diff --git a/assets/ids/1656.png b/assets/ids/1656.png new file mode 100644 index 0000000..69d6c8f Binary files /dev/null and b/assets/ids/1656.png differ diff --git a/assets/ids/1657.png b/assets/ids/1657.png new file mode 100644 index 0000000..dfed09e Binary files /dev/null and b/assets/ids/1657.png differ diff --git a/assets/ids/1658.png b/assets/ids/1658.png new file mode 100644 index 0000000..25aba7f Binary files /dev/null and b/assets/ids/1658.png differ diff --git a/assets/ids/1659.png b/assets/ids/1659.png new file mode 100644 index 0000000..f6b4eef Binary files /dev/null and b/assets/ids/1659.png differ diff --git a/assets/ids/166.png b/assets/ids/166.png new file mode 100644 index 0000000..83670d6 Binary files /dev/null and b/assets/ids/166.png differ diff --git a/assets/ids/1660.png b/assets/ids/1660.png new file mode 100644 index 0000000..b882553 Binary files /dev/null and b/assets/ids/1660.png differ diff --git a/assets/ids/1661.png b/assets/ids/1661.png new file mode 100644 index 0000000..66eb434 Binary files /dev/null and b/assets/ids/1661.png differ diff --git a/assets/ids/1662.png b/assets/ids/1662.png new file mode 100644 index 0000000..dbf897b Binary files /dev/null and b/assets/ids/1662.png differ diff --git a/assets/ids/1663.png b/assets/ids/1663.png new file mode 100644 index 0000000..6c06a11 Binary files /dev/null and b/assets/ids/1663.png differ diff --git a/assets/ids/1664.png b/assets/ids/1664.png new file mode 100644 index 0000000..74e4bfe Binary files /dev/null and b/assets/ids/1664.png differ diff --git a/assets/ids/1665.png b/assets/ids/1665.png new file mode 100644 index 0000000..7c1c910 Binary files /dev/null and b/assets/ids/1665.png differ diff --git a/assets/ids/1666.png b/assets/ids/1666.png new file mode 100644 index 0000000..5ef1576 Binary files /dev/null and b/assets/ids/1666.png differ diff --git a/assets/ids/1667.png b/assets/ids/1667.png new file mode 100644 index 0000000..c78fa5a Binary files /dev/null and b/assets/ids/1667.png differ diff --git a/assets/ids/1668.png b/assets/ids/1668.png new file mode 100644 index 0000000..559d3f3 Binary files /dev/null and b/assets/ids/1668.png differ diff --git a/assets/ids/1669.png b/assets/ids/1669.png new file mode 100644 index 0000000..982b84d Binary files /dev/null and b/assets/ids/1669.png differ diff --git a/assets/ids/167.png b/assets/ids/167.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/167.png differ diff --git a/assets/ids/1670.png b/assets/ids/1670.png new file mode 100644 index 0000000..f8a66ce Binary files /dev/null and b/assets/ids/1670.png differ diff --git a/assets/ids/1671.png b/assets/ids/1671.png new file mode 100644 index 0000000..af101a0 Binary files /dev/null and b/assets/ids/1671.png differ diff --git a/assets/ids/1672.png b/assets/ids/1672.png new file mode 100644 index 0000000..8da799e Binary files /dev/null and b/assets/ids/1672.png differ diff --git a/assets/ids/1673.png b/assets/ids/1673.png new file mode 100644 index 0000000..2cd1ec4 Binary files /dev/null and b/assets/ids/1673.png differ diff --git a/assets/ids/1674.png b/assets/ids/1674.png new file mode 100644 index 0000000..c7902ee Binary files /dev/null and b/assets/ids/1674.png differ diff --git a/assets/ids/1675.png b/assets/ids/1675.png new file mode 100644 index 0000000..9dd3e8e Binary files /dev/null and b/assets/ids/1675.png differ diff --git a/assets/ids/1676.png b/assets/ids/1676.png new file mode 100644 index 0000000..8ee209c Binary files /dev/null and b/assets/ids/1676.png differ diff --git a/assets/ids/1677.png b/assets/ids/1677.png new file mode 100644 index 0000000..0b26958 Binary files /dev/null and b/assets/ids/1677.png differ diff --git a/assets/ids/1678.png b/assets/ids/1678.png new file mode 100644 index 0000000..db046df Binary files /dev/null and b/assets/ids/1678.png differ diff --git a/assets/ids/1679.png b/assets/ids/1679.png new file mode 100644 index 0000000..964bf38 Binary files /dev/null and b/assets/ids/1679.png differ diff --git a/assets/ids/168.png b/assets/ids/168.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/168.png differ diff --git a/assets/ids/1680.png b/assets/ids/1680.png new file mode 100644 index 0000000..57ec0fe Binary files /dev/null and b/assets/ids/1680.png differ diff --git a/assets/ids/1681.png b/assets/ids/1681.png new file mode 100644 index 0000000..16b4ce3 Binary files /dev/null and b/assets/ids/1681.png differ diff --git a/assets/ids/1682.png b/assets/ids/1682.png new file mode 100644 index 0000000..dbba914 Binary files /dev/null and b/assets/ids/1682.png differ diff --git a/assets/ids/1683.png b/assets/ids/1683.png new file mode 100644 index 0000000..fe31f6a Binary files /dev/null and b/assets/ids/1683.png differ diff --git a/assets/ids/1684.png b/assets/ids/1684.png new file mode 100644 index 0000000..d7c014b Binary files /dev/null and b/assets/ids/1684.png differ diff --git a/assets/ids/1685.png b/assets/ids/1685.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1685.png differ diff --git a/assets/ids/1686.png b/assets/ids/1686.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1686.png differ diff --git a/assets/ids/1687.png b/assets/ids/1687.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1687.png differ diff --git a/assets/ids/1688.png b/assets/ids/1688.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1688.png differ diff --git a/assets/ids/1689.png b/assets/ids/1689.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1689.png differ diff --git a/assets/ids/169.png b/assets/ids/169.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/169.png differ diff --git a/assets/ids/1690.png b/assets/ids/1690.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1690.png differ diff --git a/assets/ids/1691.png b/assets/ids/1691.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1691.png differ diff --git a/assets/ids/1692.png b/assets/ids/1692.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1692.png differ diff --git a/assets/ids/1693.png b/assets/ids/1693.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1693.png differ diff --git a/assets/ids/1694.png b/assets/ids/1694.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1694.png differ diff --git a/assets/ids/1695.png b/assets/ids/1695.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1695.png differ diff --git a/assets/ids/1696.png b/assets/ids/1696.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1696.png differ diff --git a/assets/ids/1697.png b/assets/ids/1697.png new file mode 100644 index 0000000..bc4d35e Binary files /dev/null and b/assets/ids/1697.png differ diff --git a/assets/ids/1698.png b/assets/ids/1698.png new file mode 100644 index 0000000..48b1ccb Binary files /dev/null and b/assets/ids/1698.png differ diff --git a/assets/ids/1699.png b/assets/ids/1699.png new file mode 100644 index 0000000..3958f1c Binary files /dev/null and b/assets/ids/1699.png differ diff --git a/assets/ids/17.png b/assets/ids/17.png new file mode 100644 index 0000000..1e217d6 Binary files /dev/null and b/assets/ids/17.png differ diff --git a/assets/ids/170.png b/assets/ids/170.png new file mode 100644 index 0000000..e9b1ae8 Binary files /dev/null and b/assets/ids/170.png differ diff --git a/assets/ids/1700.png b/assets/ids/1700.png new file mode 100644 index 0000000..ed0984a Binary files /dev/null and b/assets/ids/1700.png differ diff --git a/assets/ids/1701.png b/assets/ids/1701.png new file mode 100644 index 0000000..7b58972 Binary files /dev/null and b/assets/ids/1701.png differ diff --git a/assets/ids/1702.png b/assets/ids/1702.png new file mode 100644 index 0000000..db79b89 Binary files /dev/null and b/assets/ids/1702.png differ diff --git a/assets/ids/1703.png b/assets/ids/1703.png new file mode 100644 index 0000000..bcd7485 Binary files /dev/null and b/assets/ids/1703.png differ diff --git a/assets/ids/1704.png b/assets/ids/1704.png new file mode 100644 index 0000000..25fd01f Binary files /dev/null and b/assets/ids/1704.png differ diff --git a/assets/ids/1705.png b/assets/ids/1705.png new file mode 100644 index 0000000..055baa8 Binary files /dev/null and b/assets/ids/1705.png differ diff --git a/assets/ids/1706.png b/assets/ids/1706.png new file mode 100644 index 0000000..98bb749 Binary files /dev/null and b/assets/ids/1706.png differ diff --git a/assets/ids/1707.png b/assets/ids/1707.png new file mode 100644 index 0000000..5313bb2 Binary files /dev/null and b/assets/ids/1707.png differ diff --git a/assets/ids/1708.png b/assets/ids/1708.png new file mode 100644 index 0000000..79482d0 Binary files /dev/null and b/assets/ids/1708.png differ diff --git a/assets/ids/1709.png b/assets/ids/1709.png new file mode 100644 index 0000000..0606761 Binary files /dev/null and b/assets/ids/1709.png differ diff --git a/assets/ids/171.png b/assets/ids/171.png new file mode 100644 index 0000000..b85cba1 Binary files /dev/null and b/assets/ids/171.png differ diff --git a/assets/ids/1710.png b/assets/ids/1710.png new file mode 100644 index 0000000..a8c42a0 Binary files /dev/null and b/assets/ids/1710.png differ diff --git a/assets/ids/1711.png b/assets/ids/1711.png new file mode 100644 index 0000000..4fb9307 Binary files /dev/null and b/assets/ids/1711.png differ diff --git a/assets/ids/1712.png b/assets/ids/1712.png new file mode 100644 index 0000000..dbb9fb7 Binary files /dev/null and b/assets/ids/1712.png differ diff --git a/assets/ids/1713.png b/assets/ids/1713.png new file mode 100644 index 0000000..8896086 Binary files /dev/null and b/assets/ids/1713.png differ diff --git a/assets/ids/1714.png b/assets/ids/1714.png new file mode 100644 index 0000000..5339e83 Binary files /dev/null and b/assets/ids/1714.png differ diff --git a/assets/ids/1715.png b/assets/ids/1715.png new file mode 100644 index 0000000..6482d6b Binary files /dev/null and b/assets/ids/1715.png differ diff --git a/assets/ids/1716.png b/assets/ids/1716.png new file mode 100644 index 0000000..0e6a99c Binary files /dev/null and b/assets/ids/1716.png differ diff --git a/assets/ids/1717.png b/assets/ids/1717.png new file mode 100644 index 0000000..d60bb8b Binary files /dev/null and b/assets/ids/1717.png differ diff --git a/assets/ids/1718.png b/assets/ids/1718.png new file mode 100644 index 0000000..4422f5d Binary files /dev/null and b/assets/ids/1718.png differ diff --git a/assets/ids/1719.png b/assets/ids/1719.png new file mode 100644 index 0000000..3510a02 Binary files /dev/null and b/assets/ids/1719.png differ diff --git a/assets/ids/172.png b/assets/ids/172.png new file mode 100644 index 0000000..8337f1b Binary files /dev/null and b/assets/ids/172.png differ diff --git a/assets/ids/1720.png b/assets/ids/1720.png new file mode 100644 index 0000000..20996a3 Binary files /dev/null and b/assets/ids/1720.png differ diff --git a/assets/ids/1721.png b/assets/ids/1721.png new file mode 100644 index 0000000..529d88b Binary files /dev/null and b/assets/ids/1721.png differ diff --git a/assets/ids/1722.png b/assets/ids/1722.png new file mode 100644 index 0000000..d24a7e1 Binary files /dev/null and b/assets/ids/1722.png differ diff --git a/assets/ids/1723.png b/assets/ids/1723.png new file mode 100644 index 0000000..d15bfc5 Binary files /dev/null and b/assets/ids/1723.png differ diff --git a/assets/ids/1724.png b/assets/ids/1724.png new file mode 100644 index 0000000..85cfd3f Binary files /dev/null and b/assets/ids/1724.png differ diff --git a/assets/ids/1725.png b/assets/ids/1725.png new file mode 100644 index 0000000..034daf0 Binary files /dev/null and b/assets/ids/1725.png differ diff --git a/assets/ids/1726.png b/assets/ids/1726.png new file mode 100644 index 0000000..5878b59 Binary files /dev/null and b/assets/ids/1726.png differ diff --git a/assets/ids/1727.png b/assets/ids/1727.png new file mode 100644 index 0000000..50f930c Binary files /dev/null and b/assets/ids/1727.png differ diff --git a/assets/ids/1728.png b/assets/ids/1728.png new file mode 100644 index 0000000..d6ea14a Binary files /dev/null and b/assets/ids/1728.png differ diff --git a/assets/ids/1729.png b/assets/ids/1729.png new file mode 100644 index 0000000..64aed1f Binary files /dev/null and b/assets/ids/1729.png differ diff --git a/assets/ids/173.png b/assets/ids/173.png new file mode 100644 index 0000000..3193abb Binary files /dev/null and b/assets/ids/173.png differ diff --git a/assets/ids/1730.png b/assets/ids/1730.png new file mode 100644 index 0000000..2c4e517 Binary files /dev/null and b/assets/ids/1730.png differ diff --git a/assets/ids/1731.png b/assets/ids/1731.png new file mode 100644 index 0000000..52660b9 Binary files /dev/null and b/assets/ids/1731.png differ diff --git a/assets/ids/1732.png b/assets/ids/1732.png new file mode 100644 index 0000000..d6ed4f2 Binary files /dev/null and b/assets/ids/1732.png differ diff --git a/assets/ids/1733.png b/assets/ids/1733.png new file mode 100644 index 0000000..a5b8ab6 Binary files /dev/null and b/assets/ids/1733.png differ diff --git a/assets/ids/1734.png b/assets/ids/1734.png new file mode 100644 index 0000000..9c221da Binary files /dev/null and b/assets/ids/1734.png differ diff --git a/assets/ids/1735.png b/assets/ids/1735.png new file mode 100644 index 0000000..097b654 Binary files /dev/null and b/assets/ids/1735.png differ diff --git a/assets/ids/1736.png b/assets/ids/1736.png new file mode 100644 index 0000000..3f19e84 Binary files /dev/null and b/assets/ids/1736.png differ diff --git a/assets/ids/1737.png b/assets/ids/1737.png new file mode 100644 index 0000000..97771e5 Binary files /dev/null and b/assets/ids/1737.png differ diff --git a/assets/ids/1738.png b/assets/ids/1738.png new file mode 100644 index 0000000..720632a Binary files /dev/null and b/assets/ids/1738.png differ diff --git a/assets/ids/1739.png b/assets/ids/1739.png new file mode 100644 index 0000000..3e0c8cd Binary files /dev/null and b/assets/ids/1739.png differ diff --git a/assets/ids/174.png b/assets/ids/174.png new file mode 100644 index 0000000..ca6cecc Binary files /dev/null and b/assets/ids/174.png differ diff --git a/assets/ids/1740.png b/assets/ids/1740.png new file mode 100644 index 0000000..6a45ced Binary files /dev/null and b/assets/ids/1740.png differ diff --git a/assets/ids/1741.png b/assets/ids/1741.png new file mode 100644 index 0000000..eb65633 Binary files /dev/null and b/assets/ids/1741.png differ diff --git a/assets/ids/1742.png b/assets/ids/1742.png new file mode 100644 index 0000000..b77850e Binary files /dev/null and b/assets/ids/1742.png differ diff --git a/assets/ids/1743.png b/assets/ids/1743.png new file mode 100644 index 0000000..6730720 Binary files /dev/null and b/assets/ids/1743.png differ diff --git a/assets/ids/1744.png b/assets/ids/1744.png new file mode 100644 index 0000000..c9d7bcc Binary files /dev/null and b/assets/ids/1744.png differ diff --git a/assets/ids/1745.png b/assets/ids/1745.png new file mode 100644 index 0000000..4f83db8 Binary files /dev/null and b/assets/ids/1745.png differ diff --git a/assets/ids/1746.png b/assets/ids/1746.png new file mode 100644 index 0000000..6543363 Binary files /dev/null and b/assets/ids/1746.png differ diff --git a/assets/ids/1747.png b/assets/ids/1747.png new file mode 100644 index 0000000..3d14a8f Binary files /dev/null and b/assets/ids/1747.png differ diff --git a/assets/ids/1748.png b/assets/ids/1748.png new file mode 100644 index 0000000..8d03da1 Binary files /dev/null and b/assets/ids/1748.png differ diff --git a/assets/ids/1749.png b/assets/ids/1749.png new file mode 100644 index 0000000..5f9d718 Binary files /dev/null and b/assets/ids/1749.png differ diff --git a/assets/ids/175.png b/assets/ids/175.png new file mode 100644 index 0000000..475b7ae Binary files /dev/null and b/assets/ids/175.png differ diff --git a/assets/ids/1750.png b/assets/ids/1750.png new file mode 100644 index 0000000..3f015a7 Binary files /dev/null and b/assets/ids/1750.png differ diff --git a/assets/ids/1751.png b/assets/ids/1751.png new file mode 100644 index 0000000..0a5910c Binary files /dev/null and b/assets/ids/1751.png differ diff --git a/assets/ids/1752.png b/assets/ids/1752.png new file mode 100644 index 0000000..3a66d33 Binary files /dev/null and b/assets/ids/1752.png differ diff --git a/assets/ids/1753.png b/assets/ids/1753.png new file mode 100644 index 0000000..052ce45 Binary files /dev/null and b/assets/ids/1753.png differ diff --git a/assets/ids/1754.png b/assets/ids/1754.png new file mode 100644 index 0000000..9fb86b5 Binary files /dev/null and b/assets/ids/1754.png differ diff --git a/assets/ids/1755.png b/assets/ids/1755.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/1755.png differ diff --git a/assets/ids/1756.png b/assets/ids/1756.png new file mode 100644 index 0000000..d4d3e72 Binary files /dev/null and b/assets/ids/1756.png differ diff --git a/assets/ids/1757.png b/assets/ids/1757.png new file mode 100644 index 0000000..69ad5b3 Binary files /dev/null and b/assets/ids/1757.png differ diff --git a/assets/ids/1758.png b/assets/ids/1758.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1758.png differ diff --git a/assets/ids/1759.png b/assets/ids/1759.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1759.png differ diff --git a/assets/ids/176.png b/assets/ids/176.png new file mode 100644 index 0000000..58f8c0a Binary files /dev/null and b/assets/ids/176.png differ diff --git a/assets/ids/1760.png b/assets/ids/1760.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1760.png differ diff --git a/assets/ids/1761.png b/assets/ids/1761.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1761.png differ diff --git a/assets/ids/1762.png b/assets/ids/1762.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1762.png differ diff --git a/assets/ids/1763.png b/assets/ids/1763.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1763.png differ diff --git a/assets/ids/1764.png b/assets/ids/1764.png new file mode 100644 index 0000000..09d657f Binary files /dev/null and b/assets/ids/1764.png differ diff --git a/assets/ids/1765.png b/assets/ids/1765.png new file mode 100644 index 0000000..29e27ad Binary files /dev/null and b/assets/ids/1765.png differ diff --git a/assets/ids/1766.png b/assets/ids/1766.png new file mode 100644 index 0000000..259daa9 Binary files /dev/null and b/assets/ids/1766.png differ diff --git a/assets/ids/1767.png b/assets/ids/1767.png new file mode 100644 index 0000000..9c1c5a2 Binary files /dev/null and b/assets/ids/1767.png differ diff --git a/assets/ids/1768.png b/assets/ids/1768.png new file mode 100644 index 0000000..f98c82d Binary files /dev/null and b/assets/ids/1768.png differ diff --git a/assets/ids/1769.png b/assets/ids/1769.png new file mode 100644 index 0000000..dd5086a Binary files /dev/null and b/assets/ids/1769.png differ diff --git a/assets/ids/177.png b/assets/ids/177.png new file mode 100644 index 0000000..2f1d767 Binary files /dev/null and b/assets/ids/177.png differ diff --git a/assets/ids/1770.png b/assets/ids/1770.png new file mode 100644 index 0000000..f443b2d Binary files /dev/null and b/assets/ids/1770.png differ diff --git a/assets/ids/1771.png b/assets/ids/1771.png new file mode 100644 index 0000000..7f2b969 Binary files /dev/null and b/assets/ids/1771.png differ diff --git a/assets/ids/1772.png b/assets/ids/1772.png new file mode 100644 index 0000000..3ee949a Binary files /dev/null and b/assets/ids/1772.png differ diff --git a/assets/ids/1773.png b/assets/ids/1773.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1773.png differ diff --git a/assets/ids/1774.png b/assets/ids/1774.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1774.png differ diff --git a/assets/ids/1775.png b/assets/ids/1775.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1775.png differ diff --git a/assets/ids/1776.png b/assets/ids/1776.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1776.png differ diff --git a/assets/ids/1777.png b/assets/ids/1777.png new file mode 100644 index 0000000..ea43e0d Binary files /dev/null and b/assets/ids/1777.png differ diff --git a/assets/ids/1778.png b/assets/ids/1778.png new file mode 100644 index 0000000..7440c55 Binary files /dev/null and b/assets/ids/1778.png differ diff --git a/assets/ids/1779.png b/assets/ids/1779.png new file mode 100644 index 0000000..284585d Binary files /dev/null and b/assets/ids/1779.png differ diff --git a/assets/ids/178.png b/assets/ids/178.png new file mode 100644 index 0000000..915ec44 Binary files /dev/null and b/assets/ids/178.png differ diff --git a/assets/ids/1780.png b/assets/ids/1780.png new file mode 100644 index 0000000..31d7c70 Binary files /dev/null and b/assets/ids/1780.png differ diff --git a/assets/ids/1781.png b/assets/ids/1781.png new file mode 100644 index 0000000..4792737 Binary files /dev/null and b/assets/ids/1781.png differ diff --git a/assets/ids/1782.png b/assets/ids/1782.png new file mode 100644 index 0000000..767de0f Binary files /dev/null and b/assets/ids/1782.png differ diff --git a/assets/ids/1783.png b/assets/ids/1783.png new file mode 100644 index 0000000..9225f4d Binary files /dev/null and b/assets/ids/1783.png differ diff --git a/assets/ids/1784.png b/assets/ids/1784.png new file mode 100644 index 0000000..bf9d7a6 Binary files /dev/null and b/assets/ids/1784.png differ diff --git a/assets/ids/1785.png b/assets/ids/1785.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1785.png differ diff --git a/assets/ids/1786.png b/assets/ids/1786.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1786.png differ diff --git a/assets/ids/1787.png b/assets/ids/1787.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1787.png differ diff --git a/assets/ids/1788.png b/assets/ids/1788.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1788.png differ diff --git a/assets/ids/1789.png b/assets/ids/1789.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1789.png differ diff --git a/assets/ids/179.png b/assets/ids/179.png new file mode 100644 index 0000000..52a73f2 Binary files /dev/null and b/assets/ids/179.png differ diff --git a/assets/ids/1790.png b/assets/ids/1790.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1790.png differ diff --git a/assets/ids/1791.png b/assets/ids/1791.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1791.png differ diff --git a/assets/ids/1792.png b/assets/ids/1792.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1792.png differ diff --git a/assets/ids/1793.png b/assets/ids/1793.png new file mode 100644 index 0000000..e959604 Binary files /dev/null and b/assets/ids/1793.png differ diff --git a/assets/ids/1794.png b/assets/ids/1794.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1794.png differ diff --git a/assets/ids/1795.png b/assets/ids/1795.png new file mode 100644 index 0000000..164b5ff Binary files /dev/null and b/assets/ids/1795.png differ diff --git a/assets/ids/1796.png b/assets/ids/1796.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1796.png differ diff --git a/assets/ids/1797.png b/assets/ids/1797.png new file mode 100644 index 0000000..0d1d153 Binary files /dev/null and b/assets/ids/1797.png differ diff --git a/assets/ids/1798.png b/assets/ids/1798.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1798.png differ diff --git a/assets/ids/1799.png b/assets/ids/1799.png new file mode 100644 index 0000000..ad352a0 Binary files /dev/null and b/assets/ids/1799.png differ diff --git a/assets/ids/18.png b/assets/ids/18.png new file mode 100644 index 0000000..0774299 Binary files /dev/null and b/assets/ids/18.png differ diff --git a/assets/ids/180.png b/assets/ids/180.png new file mode 100644 index 0000000..f71f2d7 Binary files /dev/null and b/assets/ids/180.png differ diff --git a/assets/ids/1800.png b/assets/ids/1800.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1800.png differ diff --git a/assets/ids/1801.png b/assets/ids/1801.png new file mode 100644 index 0000000..9354a95 Binary files /dev/null and b/assets/ids/1801.png differ diff --git a/assets/ids/1802.png b/assets/ids/1802.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1802.png differ diff --git a/assets/ids/1803.png b/assets/ids/1803.png new file mode 100644 index 0000000..03d76cc Binary files /dev/null and b/assets/ids/1803.png differ diff --git a/assets/ids/1804.png b/assets/ids/1804.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1804.png differ diff --git a/assets/ids/1805.png b/assets/ids/1805.png new file mode 100644 index 0000000..aa2be9f Binary files /dev/null and b/assets/ids/1805.png differ diff --git a/assets/ids/1806.png b/assets/ids/1806.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1806.png differ diff --git a/assets/ids/1807.png b/assets/ids/1807.png new file mode 100644 index 0000000..e544de7 Binary files /dev/null and b/assets/ids/1807.png differ diff --git a/assets/ids/1808.png b/assets/ids/1808.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1808.png differ diff --git a/assets/ids/1809.png b/assets/ids/1809.png new file mode 100644 index 0000000..057b431 Binary files /dev/null and b/assets/ids/1809.png differ diff --git a/assets/ids/181.png b/assets/ids/181.png new file mode 100644 index 0000000..e0435e0 Binary files /dev/null and b/assets/ids/181.png differ diff --git a/assets/ids/1810.png b/assets/ids/1810.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1810.png differ diff --git a/assets/ids/1811.png b/assets/ids/1811.png new file mode 100644 index 0000000..655c180 Binary files /dev/null and b/assets/ids/1811.png differ diff --git a/assets/ids/1812.png b/assets/ids/1812.png new file mode 100644 index 0000000..39f262e Binary files /dev/null and b/assets/ids/1812.png differ diff --git a/assets/ids/1813.png b/assets/ids/1813.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/1813.png differ diff --git a/assets/ids/1814.png b/assets/ids/1814.png new file mode 100644 index 0000000..db9fda5 Binary files /dev/null and b/assets/ids/1814.png differ diff --git a/assets/ids/1815.png b/assets/ids/1815.png new file mode 100644 index 0000000..c82c5dd Binary files /dev/null and b/assets/ids/1815.png differ diff --git a/assets/ids/1816.png b/assets/ids/1816.png new file mode 100644 index 0000000..2c1ae56 Binary files /dev/null and b/assets/ids/1816.png differ diff --git a/assets/ids/1817.png b/assets/ids/1817.png new file mode 100644 index 0000000..38ce76f Binary files /dev/null and b/assets/ids/1817.png differ diff --git a/assets/ids/1818.png b/assets/ids/1818.png new file mode 100644 index 0000000..b8b4695 Binary files /dev/null and b/assets/ids/1818.png differ diff --git a/assets/ids/1819.png b/assets/ids/1819.png new file mode 100644 index 0000000..cd11133 Binary files /dev/null and b/assets/ids/1819.png differ diff --git a/assets/ids/182.png b/assets/ids/182.png new file mode 100644 index 0000000..7e5e5e9 Binary files /dev/null and b/assets/ids/182.png differ diff --git a/assets/ids/1820.png b/assets/ids/1820.png new file mode 100644 index 0000000..361f220 Binary files /dev/null and b/assets/ids/1820.png differ diff --git a/assets/ids/1821.png b/assets/ids/1821.png new file mode 100644 index 0000000..4aba4ef Binary files /dev/null and b/assets/ids/1821.png differ diff --git a/assets/ids/1823.png b/assets/ids/1823.png new file mode 100644 index 0000000..301b8da Binary files /dev/null and b/assets/ids/1823.png differ diff --git a/assets/ids/1824.png b/assets/ids/1824.png new file mode 100644 index 0000000..bb96bcf Binary files /dev/null and b/assets/ids/1824.png differ diff --git a/assets/ids/1825.png b/assets/ids/1825.png new file mode 100644 index 0000000..6cbd0d5 Binary files /dev/null and b/assets/ids/1825.png differ diff --git a/assets/ids/1826.png b/assets/ids/1826.png new file mode 100644 index 0000000..276a8c4 Binary files /dev/null and b/assets/ids/1826.png differ diff --git a/assets/ids/1827.png b/assets/ids/1827.png new file mode 100644 index 0000000..f9643ba Binary files /dev/null and b/assets/ids/1827.png differ diff --git a/assets/ids/1828.png b/assets/ids/1828.png new file mode 100644 index 0000000..3f40671 Binary files /dev/null and b/assets/ids/1828.png differ diff --git a/assets/ids/1829.png b/assets/ids/1829.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/1829.png differ diff --git a/assets/ids/183.png b/assets/ids/183.png new file mode 100644 index 0000000..0a9d5d1 Binary files /dev/null and b/assets/ids/183.png differ diff --git a/assets/ids/1830.png b/assets/ids/1830.png new file mode 100644 index 0000000..f4c7e1f Binary files /dev/null and b/assets/ids/1830.png differ diff --git a/assets/ids/1831.png b/assets/ids/1831.png new file mode 100644 index 0000000..3586509 Binary files /dev/null and b/assets/ids/1831.png differ diff --git a/assets/ids/1832.png b/assets/ids/1832.png new file mode 100644 index 0000000..c688111 Binary files /dev/null and b/assets/ids/1832.png differ diff --git a/assets/ids/1833.png b/assets/ids/1833.png new file mode 100644 index 0000000..162b463 Binary files /dev/null and b/assets/ids/1833.png differ diff --git a/assets/ids/1834.png b/assets/ids/1834.png new file mode 100644 index 0000000..8c67696 Binary files /dev/null and b/assets/ids/1834.png differ diff --git a/assets/ids/1835.png b/assets/ids/1835.png new file mode 100644 index 0000000..3586509 Binary files /dev/null and b/assets/ids/1835.png differ diff --git a/assets/ids/1836.png b/assets/ids/1836.png new file mode 100644 index 0000000..c688111 Binary files /dev/null and b/assets/ids/1836.png differ diff --git a/assets/ids/1837.png b/assets/ids/1837.png new file mode 100644 index 0000000..162b463 Binary files /dev/null and b/assets/ids/1837.png differ diff --git a/assets/ids/1838.png b/assets/ids/1838.png new file mode 100644 index 0000000..8c67696 Binary files /dev/null and b/assets/ids/1838.png differ diff --git a/assets/ids/1839.png b/assets/ids/1839.png new file mode 100644 index 0000000..3586509 Binary files /dev/null and b/assets/ids/1839.png differ diff --git a/assets/ids/184.png b/assets/ids/184.png new file mode 100644 index 0000000..b221054 Binary files /dev/null and b/assets/ids/184.png differ diff --git a/assets/ids/1840.png b/assets/ids/1840.png new file mode 100644 index 0000000..c688111 Binary files /dev/null and b/assets/ids/1840.png differ diff --git a/assets/ids/1841.png b/assets/ids/1841.png new file mode 100644 index 0000000..162b463 Binary files /dev/null and b/assets/ids/1841.png differ diff --git a/assets/ids/1842.png b/assets/ids/1842.png new file mode 100644 index 0000000..8c67696 Binary files /dev/null and b/assets/ids/1842.png differ diff --git a/assets/ids/1843.png b/assets/ids/1843.png new file mode 100644 index 0000000..e10d4f7 Binary files /dev/null and b/assets/ids/1843.png differ diff --git a/assets/ids/185.png b/assets/ids/185.png new file mode 100644 index 0000000..3d49f97 Binary files /dev/null and b/assets/ids/185.png differ diff --git a/assets/ids/1859.png b/assets/ids/1859.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/1859.png differ diff --git a/assets/ids/186.png b/assets/ids/186.png new file mode 100644 index 0000000..84b2fb3 Binary files /dev/null and b/assets/ids/186.png differ diff --git a/assets/ids/1861.png b/assets/ids/1861.png new file mode 100644 index 0000000..a48c78a Binary files /dev/null and b/assets/ids/1861.png differ diff --git a/assets/ids/1862.png b/assets/ids/1862.png new file mode 100644 index 0000000..ac90a44 Binary files /dev/null and b/assets/ids/1862.png differ diff --git a/assets/ids/1863.png b/assets/ids/1863.png new file mode 100644 index 0000000..b2a1d3f Binary files /dev/null and b/assets/ids/1863.png differ diff --git a/assets/ids/1864.png b/assets/ids/1864.png new file mode 100644 index 0000000..0b8c982 Binary files /dev/null and b/assets/ids/1864.png differ diff --git a/assets/ids/1865.png b/assets/ids/1865.png new file mode 100644 index 0000000..0d369fd Binary files /dev/null and b/assets/ids/1865.png differ diff --git a/assets/ids/1866.png b/assets/ids/1866.png new file mode 100644 index 0000000..c695bde Binary files /dev/null and b/assets/ids/1866.png differ diff --git a/assets/ids/1867.png b/assets/ids/1867.png new file mode 100644 index 0000000..a28eae2 Binary files /dev/null and b/assets/ids/1867.png differ diff --git a/assets/ids/1868.png b/assets/ids/1868.png new file mode 100644 index 0000000..823855f Binary files /dev/null and b/assets/ids/1868.png differ diff --git a/assets/ids/1869.png b/assets/ids/1869.png new file mode 100644 index 0000000..e20c689 Binary files /dev/null and b/assets/ids/1869.png differ diff --git a/assets/ids/187.png b/assets/ids/187.png new file mode 100644 index 0000000..cc5e44d Binary files /dev/null and b/assets/ids/187.png differ diff --git a/assets/ids/1870.png b/assets/ids/1870.png new file mode 100644 index 0000000..6527672 Binary files /dev/null and b/assets/ids/1870.png differ diff --git a/assets/ids/1871.png b/assets/ids/1871.png new file mode 100644 index 0000000..2950f48 Binary files /dev/null and b/assets/ids/1871.png differ diff --git a/assets/ids/1872.png b/assets/ids/1872.png new file mode 100644 index 0000000..ab157e3 Binary files /dev/null and b/assets/ids/1872.png differ diff --git a/assets/ids/1873.png b/assets/ids/1873.png new file mode 100644 index 0000000..8ca5e13 Binary files /dev/null and b/assets/ids/1873.png differ diff --git a/assets/ids/1874.png b/assets/ids/1874.png new file mode 100644 index 0000000..bf83d22 Binary files /dev/null and b/assets/ids/1874.png differ diff --git a/assets/ids/1875.png b/assets/ids/1875.png new file mode 100644 index 0000000..74d41f5 Binary files /dev/null and b/assets/ids/1875.png differ diff --git a/assets/ids/1876.png b/assets/ids/1876.png new file mode 100644 index 0000000..4a8ba78 Binary files /dev/null and b/assets/ids/1876.png differ diff --git a/assets/ids/1877.png b/assets/ids/1877.png new file mode 100644 index 0000000..958ffc2 Binary files /dev/null and b/assets/ids/1877.png differ diff --git a/assets/ids/1878.png b/assets/ids/1878.png new file mode 100644 index 0000000..8d7e7dd Binary files /dev/null and b/assets/ids/1878.png differ diff --git a/assets/ids/1879.png b/assets/ids/1879.png new file mode 100644 index 0000000..f7ce621 Binary files /dev/null and b/assets/ids/1879.png differ diff --git a/assets/ids/188.png b/assets/ids/188.png new file mode 100644 index 0000000..bc4a99d Binary files /dev/null and b/assets/ids/188.png differ diff --git a/assets/ids/1880.png b/assets/ids/1880.png new file mode 100644 index 0000000..d61d3ac Binary files /dev/null and b/assets/ids/1880.png differ diff --git a/assets/ids/1881.png b/assets/ids/1881.png new file mode 100644 index 0000000..e61f102 Binary files /dev/null and b/assets/ids/1881.png differ diff --git a/assets/ids/1882.png b/assets/ids/1882.png new file mode 100644 index 0000000..f403981 Binary files /dev/null and b/assets/ids/1882.png differ diff --git a/assets/ids/1883.png b/assets/ids/1883.png new file mode 100644 index 0000000..077ba45 Binary files /dev/null and b/assets/ids/1883.png differ diff --git a/assets/ids/1884.png b/assets/ids/1884.png new file mode 100644 index 0000000..a05b446 Binary files /dev/null and b/assets/ids/1884.png differ diff --git a/assets/ids/1885.png b/assets/ids/1885.png new file mode 100644 index 0000000..9e4211d Binary files /dev/null and b/assets/ids/1885.png differ diff --git a/assets/ids/1886.png b/assets/ids/1886.png new file mode 100644 index 0000000..0bdf87d Binary files /dev/null and b/assets/ids/1886.png differ diff --git a/assets/ids/1887.png b/assets/ids/1887.png new file mode 100644 index 0000000..0bdf87d Binary files /dev/null and b/assets/ids/1887.png differ diff --git a/assets/ids/1888.png b/assets/ids/1888.png new file mode 100644 index 0000000..0bdf87d Binary files /dev/null and b/assets/ids/1888.png differ diff --git a/assets/ids/1889.png b/assets/ids/1889.png new file mode 100644 index 0000000..f3083fb Binary files /dev/null and b/assets/ids/1889.png differ diff --git a/assets/ids/1890.png b/assets/ids/1890.png new file mode 100644 index 0000000..d9d15f0 Binary files /dev/null and b/assets/ids/1890.png differ diff --git a/assets/ids/1891.png b/assets/ids/1891.png new file mode 100644 index 0000000..820a4cd Binary files /dev/null and b/assets/ids/1891.png differ diff --git a/assets/ids/1892.png b/assets/ids/1892.png new file mode 100644 index 0000000..6bd0181 Binary files /dev/null and b/assets/ids/1892.png differ diff --git a/assets/ids/1893.png b/assets/ids/1893.png new file mode 100644 index 0000000..8ebcddd Binary files /dev/null and b/assets/ids/1893.png differ diff --git a/assets/ids/1894.png b/assets/ids/1894.png new file mode 100644 index 0000000..5c1f32c Binary files /dev/null and b/assets/ids/1894.png differ diff --git a/assets/ids/1895.png b/assets/ids/1895.png new file mode 100644 index 0000000..3c10990 Binary files /dev/null and b/assets/ids/1895.png differ diff --git a/assets/ids/1896.png b/assets/ids/1896.png new file mode 100644 index 0000000..96ca411 Binary files /dev/null and b/assets/ids/1896.png differ diff --git a/assets/ids/1897.png b/assets/ids/1897.png new file mode 100644 index 0000000..ab23371 Binary files /dev/null and b/assets/ids/1897.png differ diff --git a/assets/ids/1898.png b/assets/ids/1898.png new file mode 100644 index 0000000..196b2ee Binary files /dev/null and b/assets/ids/1898.png differ diff --git a/assets/ids/1899.png b/assets/ids/1899.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1899.png differ diff --git a/assets/ids/19.png b/assets/ids/19.png new file mode 100644 index 0000000..0a05011 Binary files /dev/null and b/assets/ids/19.png differ diff --git a/assets/ids/190.png b/assets/ids/190.png new file mode 100644 index 0000000..8482ee0 Binary files /dev/null and b/assets/ids/190.png differ diff --git a/assets/ids/1900.png b/assets/ids/1900.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1900.png differ diff --git a/assets/ids/1901.png b/assets/ids/1901.png new file mode 100644 index 0000000..3172666 Binary files /dev/null and b/assets/ids/1901.png differ diff --git a/assets/ids/1902.png b/assets/ids/1902.png new file mode 100644 index 0000000..2e8b6d7 Binary files /dev/null and b/assets/ids/1902.png differ diff --git a/assets/ids/1903.png b/assets/ids/1903.png new file mode 100644 index 0000000..b815d5c Binary files /dev/null and b/assets/ids/1903.png differ diff --git a/assets/ids/1904.png b/assets/ids/1904.png new file mode 100644 index 0000000..50e65eb Binary files /dev/null and b/assets/ids/1904.png differ diff --git a/assets/ids/1905.png b/assets/ids/1905.png new file mode 100644 index 0000000..c436c23 Binary files /dev/null and b/assets/ids/1905.png differ diff --git a/assets/ids/1906.png b/assets/ids/1906.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/1906.png differ diff --git a/assets/ids/1907.png b/assets/ids/1907.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/1907.png differ diff --git a/assets/ids/1908.png b/assets/ids/1908.png new file mode 100644 index 0000000..ffba311 Binary files /dev/null and b/assets/ids/1908.png differ diff --git a/assets/ids/1909.png b/assets/ids/1909.png new file mode 100644 index 0000000..2499ecd Binary files /dev/null and b/assets/ids/1909.png differ diff --git a/assets/ids/191.png b/assets/ids/191.png new file mode 100644 index 0000000..f3083fb Binary files /dev/null and b/assets/ids/191.png differ diff --git a/assets/ids/1910.png b/assets/ids/1910.png new file mode 100644 index 0000000..01db752 Binary files /dev/null and b/assets/ids/1910.png differ diff --git a/assets/ids/1911.png b/assets/ids/1911.png new file mode 100644 index 0000000..90f19f3 Binary files /dev/null and b/assets/ids/1911.png differ diff --git a/assets/ids/192.png b/assets/ids/192.png new file mode 100644 index 0000000..580720e Binary files /dev/null and b/assets/ids/192.png differ diff --git a/assets/ids/193.png b/assets/ids/193.png new file mode 100644 index 0000000..dabc219 Binary files /dev/null and b/assets/ids/193.png differ diff --git a/assets/ids/194.png b/assets/ids/194.png new file mode 100644 index 0000000..c112a11 Binary files /dev/null and b/assets/ids/194.png differ diff --git a/assets/ids/195.png b/assets/ids/195.png new file mode 100644 index 0000000..01db752 Binary files /dev/null and b/assets/ids/195.png differ diff --git a/assets/ids/196.png b/assets/ids/196.png new file mode 100644 index 0000000..90f19f3 Binary files /dev/null and b/assets/ids/196.png differ diff --git a/assets/ids/197.png b/assets/ids/197.png new file mode 100644 index 0000000..c1632b2 Binary files /dev/null and b/assets/ids/197.png differ diff --git a/assets/ids/198.png b/assets/ids/198.png new file mode 100644 index 0000000..d9d15f0 Binary files /dev/null and b/assets/ids/198.png differ diff --git a/assets/ids/199.png b/assets/ids/199.png new file mode 100644 index 0000000..820a4cd Binary files /dev/null and b/assets/ids/199.png differ diff --git a/assets/ids/2.png b/assets/ids/2.png new file mode 100644 index 0000000..1301315 Binary files /dev/null and b/assets/ids/2.png differ diff --git a/assets/ids/20.png b/assets/ids/20.png new file mode 100644 index 0000000..0eb9b26 Binary files /dev/null and b/assets/ids/20.png differ diff --git a/assets/ids/200.png b/assets/ids/200.png new file mode 100644 index 0000000..0c6ce4b Binary files /dev/null and b/assets/ids/200.png differ diff --git a/assets/ids/201.png b/assets/ids/201.png new file mode 100644 index 0000000..e5d9412 Binary files /dev/null and b/assets/ids/201.png differ diff --git a/assets/ids/202.png b/assets/ids/202.png new file mode 100644 index 0000000..47cb8cd Binary files /dev/null and b/assets/ids/202.png differ diff --git a/assets/ids/203.png b/assets/ids/203.png new file mode 100644 index 0000000..243ebd9 Binary files /dev/null and b/assets/ids/203.png differ diff --git a/assets/ids/204.png b/assets/ids/204.png new file mode 100644 index 0000000..aa067e8 Binary files /dev/null and b/assets/ids/204.png differ diff --git a/assets/ids/205.png b/assets/ids/205.png new file mode 100644 index 0000000..a32f792 Binary files /dev/null and b/assets/ids/205.png differ diff --git a/assets/ids/206.png b/assets/ids/206.png new file mode 100644 index 0000000..daf2f9d Binary files /dev/null and b/assets/ids/206.png differ diff --git a/assets/ids/207.png b/assets/ids/207.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/207.png differ diff --git a/assets/ids/208.png b/assets/ids/208.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/208.png differ diff --git a/assets/ids/209.png b/assets/ids/209.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/209.png differ diff --git a/assets/ids/21.png b/assets/ids/21.png new file mode 100644 index 0000000..24ec234 Binary files /dev/null and b/assets/ids/21.png differ diff --git a/assets/ids/210.png b/assets/ids/210.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/210.png differ diff --git a/assets/ids/211.png b/assets/ids/211.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/211.png differ diff --git a/assets/ids/212.png b/assets/ids/212.png new file mode 100644 index 0000000..bfe66ac Binary files /dev/null and b/assets/ids/212.png differ diff --git a/assets/ids/213.png b/assets/ids/213.png new file mode 100644 index 0000000..6fbbf8b Binary files /dev/null and b/assets/ids/213.png differ diff --git a/assets/ids/215.png b/assets/ids/215.png new file mode 100644 index 0000000..b815d5c Binary files /dev/null and b/assets/ids/215.png differ diff --git a/assets/ids/216.png b/assets/ids/216.png new file mode 100644 index 0000000..d28719c Binary files /dev/null and b/assets/ids/216.png differ diff --git a/assets/ids/217.png b/assets/ids/217.png new file mode 100644 index 0000000..9a2773c Binary files /dev/null and b/assets/ids/217.png differ diff --git a/assets/ids/218.png b/assets/ids/218.png new file mode 100644 index 0000000..86259aa Binary files /dev/null and b/assets/ids/218.png differ diff --git a/assets/ids/219.png b/assets/ids/219.png new file mode 100644 index 0000000..90f19f3 Binary files /dev/null and b/assets/ids/219.png differ diff --git a/assets/ids/22.png b/assets/ids/22.png new file mode 100644 index 0000000..94aacf1 Binary files /dev/null and b/assets/ids/22.png differ diff --git a/assets/ids/220.png b/assets/ids/220.png new file mode 100644 index 0000000..01db752 Binary files /dev/null and b/assets/ids/220.png differ diff --git a/assets/ids/222.png b/assets/ids/222.png new file mode 100644 index 0000000..4048aa1 Binary files /dev/null and b/assets/ids/222.png differ diff --git a/assets/ids/223.png b/assets/ids/223.png new file mode 100644 index 0000000..a7403b1 Binary files /dev/null and b/assets/ids/223.png differ diff --git a/assets/ids/224.png b/assets/ids/224.png new file mode 100644 index 0000000..469cf6a Binary files /dev/null and b/assets/ids/224.png differ diff --git a/assets/ids/225.png b/assets/ids/225.png new file mode 100644 index 0000000..f8c319a Binary files /dev/null and b/assets/ids/225.png differ diff --git a/assets/ids/226.png b/assets/ids/226.png new file mode 100644 index 0000000..dc1a60d Binary files /dev/null and b/assets/ids/226.png differ diff --git a/assets/ids/227.png b/assets/ids/227.png new file mode 100644 index 0000000..8811818 Binary files /dev/null and b/assets/ids/227.png differ diff --git a/assets/ids/228.png b/assets/ids/228.png new file mode 100644 index 0000000..9291a3a Binary files /dev/null and b/assets/ids/228.png differ diff --git a/assets/ids/229.png b/assets/ids/229.png new file mode 100644 index 0000000..06bc294 Binary files /dev/null and b/assets/ids/229.png differ diff --git a/assets/ids/23.png b/assets/ids/23.png new file mode 100644 index 0000000..3475430 Binary files /dev/null and b/assets/ids/23.png differ diff --git a/assets/ids/230.png b/assets/ids/230.png new file mode 100644 index 0000000..63e8918 Binary files /dev/null and b/assets/ids/230.png differ diff --git a/assets/ids/231.png b/assets/ids/231.png new file mode 100644 index 0000000..2bb923f Binary files /dev/null and b/assets/ids/231.png differ diff --git a/assets/ids/232.png b/assets/ids/232.png new file mode 100644 index 0000000..a7b66a3 Binary files /dev/null and b/assets/ids/232.png differ diff --git a/assets/ids/233.png b/assets/ids/233.png new file mode 100644 index 0000000..7c0b049 Binary files /dev/null and b/assets/ids/233.png differ diff --git a/assets/ids/234.png b/assets/ids/234.png new file mode 100644 index 0000000..c44eac9 Binary files /dev/null and b/assets/ids/234.png differ diff --git a/assets/ids/235.png b/assets/ids/235.png new file mode 100644 index 0000000..f3b72c6 Binary files /dev/null and b/assets/ids/235.png differ diff --git a/assets/ids/236.png b/assets/ids/236.png new file mode 100644 index 0000000..2ec981a Binary files /dev/null and b/assets/ids/236.png differ diff --git a/assets/ids/237.png b/assets/ids/237.png new file mode 100644 index 0000000..1879081 Binary files /dev/null and b/assets/ids/237.png differ diff --git a/assets/ids/238.png b/assets/ids/238.png new file mode 100644 index 0000000..19643a8 Binary files /dev/null and b/assets/ids/238.png differ diff --git a/assets/ids/239.png b/assets/ids/239.png new file mode 100644 index 0000000..c74acf3 Binary files /dev/null and b/assets/ids/239.png differ diff --git a/assets/ids/24.png b/assets/ids/24.png new file mode 100644 index 0000000..6b874ed Binary files /dev/null and b/assets/ids/24.png differ diff --git a/assets/ids/240.png b/assets/ids/240.png new file mode 100644 index 0000000..93919ab Binary files /dev/null and b/assets/ids/240.png differ diff --git a/assets/ids/241.png b/assets/ids/241.png new file mode 100644 index 0000000..7b26ed2 Binary files /dev/null and b/assets/ids/241.png differ diff --git a/assets/ids/242.png b/assets/ids/242.png new file mode 100644 index 0000000..792e946 Binary files /dev/null and b/assets/ids/242.png differ diff --git a/assets/ids/243.png b/assets/ids/243.png new file mode 100644 index 0000000..20996a3 Binary files /dev/null and b/assets/ids/243.png differ diff --git a/assets/ids/244.png b/assets/ids/244.png new file mode 100644 index 0000000..529d88b Binary files /dev/null and b/assets/ids/244.png differ diff --git a/assets/ids/245.png b/assets/ids/245.png new file mode 100644 index 0000000..232d4c5 Binary files /dev/null and b/assets/ids/245.png differ diff --git a/assets/ids/246.png b/assets/ids/246.png new file mode 100644 index 0000000..40b300f Binary files /dev/null and b/assets/ids/246.png differ diff --git a/assets/ids/247.png b/assets/ids/247.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/247.png differ diff --git a/assets/ids/248.png b/assets/ids/248.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/248.png differ diff --git a/assets/ids/249.png b/assets/ids/249.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/249.png differ diff --git a/assets/ids/25.png b/assets/ids/25.png new file mode 100644 index 0000000..f374229 Binary files /dev/null and b/assets/ids/25.png differ diff --git a/assets/ids/250.png b/assets/ids/250.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/250.png differ diff --git a/assets/ids/251.png b/assets/ids/251.png new file mode 100644 index 0000000..6cbd0d5 Binary files /dev/null and b/assets/ids/251.png differ diff --git a/assets/ids/252.png b/assets/ids/252.png new file mode 100644 index 0000000..bfe66ac Binary files /dev/null and b/assets/ids/252.png differ diff --git a/assets/ids/253.png b/assets/ids/253.png new file mode 100644 index 0000000..6fbbf8b Binary files /dev/null and b/assets/ids/253.png differ diff --git a/assets/ids/254.png b/assets/ids/254.png new file mode 100644 index 0000000..c32b1d6 Binary files /dev/null and b/assets/ids/254.png differ diff --git a/assets/ids/255.png b/assets/ids/255.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/255.png differ diff --git a/assets/ids/256.png b/assets/ids/256.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/256.png differ diff --git a/assets/ids/257.png b/assets/ids/257.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/257.png differ diff --git a/assets/ids/258.png b/assets/ids/258.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/258.png differ diff --git a/assets/ids/259.png b/assets/ids/259.png new file mode 100644 index 0000000..4a4ad28 Binary files /dev/null and b/assets/ids/259.png differ diff --git a/assets/ids/26.png b/assets/ids/26.png new file mode 100644 index 0000000..164e0a9 Binary files /dev/null and b/assets/ids/26.png differ diff --git a/assets/ids/260.png b/assets/ids/260.png new file mode 100644 index 0000000..bfe66ac Binary files /dev/null and b/assets/ids/260.png differ diff --git a/assets/ids/261.png b/assets/ids/261.png new file mode 100644 index 0000000..6fbbf8b Binary files /dev/null and b/assets/ids/261.png differ diff --git a/assets/ids/263.png b/assets/ids/263.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/263.png differ diff --git a/assets/ids/264.png b/assets/ids/264.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/264.png differ diff --git a/assets/ids/265.png b/assets/ids/265.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/265.png differ diff --git a/assets/ids/266.png b/assets/ids/266.png new file mode 100644 index 0000000..50bd02e Binary files /dev/null and b/assets/ids/266.png differ diff --git a/assets/ids/267.png b/assets/ids/267.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/267.png differ diff --git a/assets/ids/268.png b/assets/ids/268.png new file mode 100644 index 0000000..505492b Binary files /dev/null and b/assets/ids/268.png differ diff --git a/assets/ids/269.png b/assets/ids/269.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/269.png differ diff --git a/assets/ids/27.png b/assets/ids/27.png new file mode 100644 index 0000000..312a6ed Binary files /dev/null and b/assets/ids/27.png differ diff --git a/assets/ids/270.png b/assets/ids/270.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/270.png differ diff --git a/assets/ids/271.png b/assets/ids/271.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/271.png differ diff --git a/assets/ids/272.png b/assets/ids/272.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/272.png differ diff --git a/assets/ids/273.png b/assets/ids/273.png new file mode 100644 index 0000000..712a8b1 Binary files /dev/null and b/assets/ids/273.png differ diff --git a/assets/ids/274.png b/assets/ids/274.png new file mode 100644 index 0000000..bfe66ac Binary files /dev/null and b/assets/ids/274.png differ diff --git a/assets/ids/275.png b/assets/ids/275.png new file mode 100644 index 0000000..6fbbf8b Binary files /dev/null and b/assets/ids/275.png differ diff --git a/assets/ids/277.png b/assets/ids/277.png new file mode 100644 index 0000000..aa26a2e Binary files /dev/null and b/assets/ids/277.png differ diff --git a/assets/ids/278.png b/assets/ids/278.png new file mode 100644 index 0000000..c14e2e9 Binary files /dev/null and b/assets/ids/278.png differ diff --git a/assets/ids/279.png b/assets/ids/279.png new file mode 100644 index 0000000..cbe24e7 Binary files /dev/null and b/assets/ids/279.png differ diff --git a/assets/ids/28.png b/assets/ids/28.png new file mode 100644 index 0000000..2755654 Binary files /dev/null and b/assets/ids/28.png differ diff --git a/assets/ids/280.png b/assets/ids/280.png new file mode 100644 index 0000000..8a43d9b Binary files /dev/null and b/assets/ids/280.png differ diff --git a/assets/ids/281.png b/assets/ids/281.png new file mode 100644 index 0000000..9530e04 Binary files /dev/null and b/assets/ids/281.png differ diff --git a/assets/ids/282.png b/assets/ids/282.png new file mode 100644 index 0000000..4a59292 Binary files /dev/null and b/assets/ids/282.png differ diff --git a/assets/ids/283.png b/assets/ids/283.png new file mode 100644 index 0000000..3cb075d Binary files /dev/null and b/assets/ids/283.png differ diff --git a/assets/ids/284.png b/assets/ids/284.png new file mode 100644 index 0000000..83a4fff Binary files /dev/null and b/assets/ids/284.png differ diff --git a/assets/ids/285.png b/assets/ids/285.png new file mode 100644 index 0000000..2cbfaa5 Binary files /dev/null and b/assets/ids/285.png differ diff --git a/assets/ids/286.png b/assets/ids/286.png new file mode 100644 index 0000000..3f74c23 Binary files /dev/null and b/assets/ids/286.png differ diff --git a/assets/ids/287.png b/assets/ids/287.png new file mode 100644 index 0000000..4472159 Binary files /dev/null and b/assets/ids/287.png differ diff --git a/assets/ids/289.png b/assets/ids/289.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/289.png differ diff --git a/assets/ids/29.png b/assets/ids/29.png new file mode 100644 index 0000000..046f194 Binary files /dev/null and b/assets/ids/29.png differ diff --git a/assets/ids/291.png b/assets/ids/291.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/291.png differ diff --git a/assets/ids/294.png b/assets/ids/294.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/294.png differ diff --git a/assets/ids/295.png b/assets/ids/295.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/295.png differ diff --git a/assets/ids/296.png b/assets/ids/296.png new file mode 100644 index 0000000..3172666 Binary files /dev/null and b/assets/ids/296.png differ diff --git a/assets/ids/297.png b/assets/ids/297.png new file mode 100644 index 0000000..2e8b6d7 Binary files /dev/null and b/assets/ids/297.png differ diff --git a/assets/ids/299.png b/assets/ids/299.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/299.png differ diff --git a/assets/ids/3.png b/assets/ids/3.png new file mode 100644 index 0000000..8f39466 Binary files /dev/null and b/assets/ids/3.png differ diff --git a/assets/ids/30.png b/assets/ids/30.png new file mode 100644 index 0000000..05a8316 Binary files /dev/null and b/assets/ids/30.png differ diff --git a/assets/ids/301.png b/assets/ids/301.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/301.png differ diff --git a/assets/ids/305.png b/assets/ids/305.png new file mode 100644 index 0000000..d994fdd Binary files /dev/null and b/assets/ids/305.png differ diff --git a/assets/ids/307.png b/assets/ids/307.png new file mode 100644 index 0000000..7dedf1b Binary files /dev/null and b/assets/ids/307.png differ diff --git a/assets/ids/309.png b/assets/ids/309.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/309.png differ diff --git a/assets/ids/31.png b/assets/ids/31.png new file mode 100644 index 0000000..bfa9bb2 Binary files /dev/null and b/assets/ids/31.png differ diff --git a/assets/ids/311.png b/assets/ids/311.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/311.png differ diff --git a/assets/ids/315.png b/assets/ids/315.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/315.png differ diff --git a/assets/ids/317.png b/assets/ids/317.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/317.png differ diff --git a/assets/ids/32.png b/assets/ids/32.png new file mode 100644 index 0000000..7c79600 Binary files /dev/null and b/assets/ids/32.png differ diff --git a/assets/ids/321.png b/assets/ids/321.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/321.png differ diff --git a/assets/ids/323.png b/assets/ids/323.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/323.png differ diff --git a/assets/ids/324.png b/assets/ids/324.png new file mode 100644 index 0000000..4460386 Binary files /dev/null and b/assets/ids/324.png differ diff --git a/assets/ids/325.png b/assets/ids/325.png new file mode 100644 index 0000000..9c54029 Binary files /dev/null and b/assets/ids/325.png differ diff --git a/assets/ids/326.png b/assets/ids/326.png new file mode 100644 index 0000000..c54dfe5 Binary files /dev/null and b/assets/ids/326.png differ diff --git a/assets/ids/327.png b/assets/ids/327.png new file mode 100644 index 0000000..7fcc089 Binary files /dev/null and b/assets/ids/327.png differ diff --git a/assets/ids/328.png b/assets/ids/328.png new file mode 100644 index 0000000..5eea585 Binary files /dev/null and b/assets/ids/328.png differ diff --git a/assets/ids/329.png b/assets/ids/329.png new file mode 100644 index 0000000..b15e256 Binary files /dev/null and b/assets/ids/329.png differ diff --git a/assets/ids/33.png b/assets/ids/33.png new file mode 100644 index 0000000..4688242 Binary files /dev/null and b/assets/ids/33.png differ diff --git a/assets/ids/331.png b/assets/ids/331.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/331.png differ diff --git a/assets/ids/333.png b/assets/ids/333.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/333.png differ diff --git a/assets/ids/337.png b/assets/ids/337.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/337.png differ diff --git a/assets/ids/339.png b/assets/ids/339.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/339.png differ diff --git a/assets/ids/34.png b/assets/ids/34.png new file mode 100644 index 0000000..bfa9bb2 Binary files /dev/null and b/assets/ids/34.png differ diff --git a/assets/ids/343.png b/assets/ids/343.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/343.png differ diff --git a/assets/ids/345.png b/assets/ids/345.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/345.png differ diff --git a/assets/ids/349.png b/assets/ids/349.png new file mode 100644 index 0000000..d994fdd Binary files /dev/null and b/assets/ids/349.png differ diff --git a/assets/ids/35.png b/assets/ids/35.png new file mode 100644 index 0000000..2c545b5 Binary files /dev/null and b/assets/ids/35.png differ diff --git a/assets/ids/351.png b/assets/ids/351.png new file mode 100644 index 0000000..7dedf1b Binary files /dev/null and b/assets/ids/351.png differ diff --git a/assets/ids/353.png b/assets/ids/353.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/353.png differ diff --git a/assets/ids/355.png b/assets/ids/355.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/355.png differ diff --git a/assets/ids/358.png b/assets/ids/358.png new file mode 100644 index 0000000..fb3926d Binary files /dev/null and b/assets/ids/358.png differ diff --git a/assets/ids/36.png b/assets/ids/36.png new file mode 100644 index 0000000..bba5e98 Binary files /dev/null and b/assets/ids/36.png differ diff --git a/assets/ids/363.png b/assets/ids/363.png new file mode 100644 index 0000000..d60bb8b Binary files /dev/null and b/assets/ids/363.png differ diff --git a/assets/ids/364.png b/assets/ids/364.png new file mode 100644 index 0000000..4422f5d Binary files /dev/null and b/assets/ids/364.png differ diff --git a/assets/ids/365.png b/assets/ids/365.png new file mode 100644 index 0000000..0e6a99c Binary files /dev/null and b/assets/ids/365.png differ diff --git a/assets/ids/366.png b/assets/ids/366.png new file mode 100644 index 0000000..d15bfc5 Binary files /dev/null and b/assets/ids/366.png differ diff --git a/assets/ids/367.png b/assets/ids/367.png new file mode 100644 index 0000000..85cfd3f Binary files /dev/null and b/assets/ids/367.png differ diff --git a/assets/ids/368.png b/assets/ids/368.png new file mode 100644 index 0000000..d24a7e1 Binary files /dev/null and b/assets/ids/368.png differ diff --git a/assets/ids/369.png b/assets/ids/369.png new file mode 100644 index 0000000..50e65eb Binary files /dev/null and b/assets/ids/369.png differ diff --git a/assets/ids/370.png b/assets/ids/370.png new file mode 100644 index 0000000..c436c23 Binary files /dev/null and b/assets/ids/370.png differ diff --git a/assets/ids/371.png b/assets/ids/371.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/371.png differ diff --git a/assets/ids/372.png b/assets/ids/372.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/372.png differ diff --git a/assets/ids/373.png b/assets/ids/373.png new file mode 100644 index 0000000..ffba311 Binary files /dev/null and b/assets/ids/373.png differ diff --git a/assets/ids/374.png b/assets/ids/374.png new file mode 100644 index 0000000..2499ecd Binary files /dev/null and b/assets/ids/374.png differ diff --git a/assets/ids/375.png b/assets/ids/375.png new file mode 100644 index 0000000..e055da9 Binary files /dev/null and b/assets/ids/375.png differ diff --git a/assets/ids/376.png b/assets/ids/376.png new file mode 100644 index 0000000..19f73d9 Binary files /dev/null and b/assets/ids/376.png differ diff --git a/assets/ids/377.png b/assets/ids/377.png new file mode 100644 index 0000000..7bc7217 Binary files /dev/null and b/assets/ids/377.png differ diff --git a/assets/ids/378.png b/assets/ids/378.png new file mode 100644 index 0000000..257f97f Binary files /dev/null and b/assets/ids/378.png differ diff --git a/assets/ids/39.png b/assets/ids/39.png new file mode 100644 index 0000000..c5251fe Binary files /dev/null and b/assets/ids/39.png differ diff --git a/assets/ids/392.png b/assets/ids/392.png new file mode 100644 index 0000000..9a95b19 Binary files /dev/null and b/assets/ids/392.png differ diff --git a/assets/ids/393.png b/assets/ids/393.png new file mode 100644 index 0000000..6bd0181 Binary files /dev/null and b/assets/ids/393.png differ diff --git a/assets/ids/394.png b/assets/ids/394.png new file mode 100644 index 0000000..4718810 Binary files /dev/null and b/assets/ids/394.png differ diff --git a/assets/ids/395.png b/assets/ids/395.png new file mode 100644 index 0000000..a7db42f Binary files /dev/null and b/assets/ids/395.png differ diff --git a/assets/ids/396.png b/assets/ids/396.png new file mode 100644 index 0000000..fd09a18 Binary files /dev/null and b/assets/ids/396.png differ diff --git a/assets/ids/397.png b/assets/ids/397.png new file mode 100644 index 0000000..79482d0 Binary files /dev/null and b/assets/ids/397.png differ diff --git a/assets/ids/398.png b/assets/ids/398.png new file mode 100644 index 0000000..0606761 Binary files /dev/null and b/assets/ids/398.png differ diff --git a/assets/ids/399.png b/assets/ids/399.png new file mode 100644 index 0000000..a8c42a0 Binary files /dev/null and b/assets/ids/399.png differ diff --git a/assets/ids/4.png b/assets/ids/4.png new file mode 100644 index 0000000..b4d3207 Binary files /dev/null and b/assets/ids/4.png differ diff --git a/assets/ids/40.png b/assets/ids/40.png new file mode 100644 index 0000000..b815d5c Binary files /dev/null and b/assets/ids/40.png differ diff --git a/assets/ids/405.png b/assets/ids/405.png new file mode 100644 index 0000000..a41008a Binary files /dev/null and b/assets/ids/405.png differ diff --git a/assets/ids/406.png b/assets/ids/406.png new file mode 100644 index 0000000..1ee091c Binary files /dev/null and b/assets/ids/406.png differ diff --git a/assets/ids/407.png b/assets/ids/407.png new file mode 100644 index 0000000..6e61d17 Binary files /dev/null and b/assets/ids/407.png differ diff --git a/assets/ids/408.png b/assets/ids/408.png new file mode 100644 index 0000000..2fdd9b8 Binary files /dev/null and b/assets/ids/408.png differ diff --git a/assets/ids/409.png b/assets/ids/409.png new file mode 100644 index 0000000..3d191b1 Binary files /dev/null and b/assets/ids/409.png differ diff --git a/assets/ids/41.png b/assets/ids/41.png new file mode 100644 index 0000000..eaeb198 Binary files /dev/null and b/assets/ids/41.png differ diff --git a/assets/ids/410.png b/assets/ids/410.png new file mode 100644 index 0000000..a87022f Binary files /dev/null and b/assets/ids/410.png differ diff --git a/assets/ids/411.png b/assets/ids/411.png new file mode 100644 index 0000000..6bccf35 Binary files /dev/null and b/assets/ids/411.png differ diff --git a/assets/ids/412.png b/assets/ids/412.png new file mode 100644 index 0000000..51a80e5 Binary files /dev/null and b/assets/ids/412.png differ diff --git a/assets/ids/413.png b/assets/ids/413.png new file mode 100644 index 0000000..4ced06c Binary files /dev/null and b/assets/ids/413.png differ diff --git a/assets/ids/414.png b/assets/ids/414.png new file mode 100644 index 0000000..2b44167 Binary files /dev/null and b/assets/ids/414.png differ diff --git a/assets/ids/419.png b/assets/ids/419.png new file mode 100644 index 0000000..f7e8079 Binary files /dev/null and b/assets/ids/419.png differ diff --git a/assets/ids/420.png b/assets/ids/420.png new file mode 100644 index 0000000..ff5baa8 Binary files /dev/null and b/assets/ids/420.png differ diff --git a/assets/ids/421.png b/assets/ids/421.png new file mode 100644 index 0000000..034daf0 Binary files /dev/null and b/assets/ids/421.png differ diff --git a/assets/ids/422.png b/assets/ids/422.png new file mode 100644 index 0000000..5878b59 Binary files /dev/null and b/assets/ids/422.png differ diff --git a/assets/ids/446.png b/assets/ids/446.png new file mode 100644 index 0000000..d6ea14a Binary files /dev/null and b/assets/ids/446.png differ diff --git a/assets/ids/447.png b/assets/ids/447.png new file mode 100644 index 0000000..64aed1f Binary files /dev/null and b/assets/ids/447.png differ diff --git a/assets/ids/448.png b/assets/ids/448.png new file mode 100644 index 0000000..4e97c2e Binary files /dev/null and b/assets/ids/448.png differ diff --git a/assets/ids/449.png b/assets/ids/449.png new file mode 100644 index 0000000..4beec3e Binary files /dev/null and b/assets/ids/449.png differ diff --git a/assets/ids/45.png b/assets/ids/45.png new file mode 100644 index 0000000..7d34801 Binary files /dev/null and b/assets/ids/45.png differ diff --git a/assets/ids/450.png b/assets/ids/450.png new file mode 100644 index 0000000..be47e15 Binary files /dev/null and b/assets/ids/450.png differ diff --git a/assets/ids/451.png b/assets/ids/451.png new file mode 100644 index 0000000..dac5c0c Binary files /dev/null and b/assets/ids/451.png differ diff --git a/assets/ids/452.png b/assets/ids/452.png new file mode 100644 index 0000000..1ad40c6 Binary files /dev/null and b/assets/ids/452.png differ diff --git a/assets/ids/453.png b/assets/ids/453.png new file mode 100644 index 0000000..d4a94ea Binary files /dev/null and b/assets/ids/453.png differ diff --git a/assets/ids/454.png b/assets/ids/454.png new file mode 100644 index 0000000..13681b8 Binary files /dev/null and b/assets/ids/454.png differ diff --git a/assets/ids/455.png b/assets/ids/455.png new file mode 100644 index 0000000..a7c86ad Binary files /dev/null and b/assets/ids/455.png differ diff --git a/assets/ids/456.png b/assets/ids/456.png new file mode 100644 index 0000000..90d6dd9 Binary files /dev/null and b/assets/ids/456.png differ diff --git a/assets/ids/457.png b/assets/ids/457.png new file mode 100644 index 0000000..035edf0 Binary files /dev/null and b/assets/ids/457.png differ diff --git a/assets/ids/458.png b/assets/ids/458.png new file mode 100644 index 0000000..4540d28 Binary files /dev/null and b/assets/ids/458.png differ diff --git a/assets/ids/459.png b/assets/ids/459.png new file mode 100644 index 0000000..f9d0e60 Binary files /dev/null and b/assets/ids/459.png differ diff --git a/assets/ids/46.png b/assets/ids/46.png new file mode 100644 index 0000000..39f965c Binary files /dev/null and b/assets/ids/46.png differ diff --git a/assets/ids/460.png b/assets/ids/460.png new file mode 100644 index 0000000..b4a6e68 Binary files /dev/null and b/assets/ids/460.png differ diff --git a/assets/ids/461.png b/assets/ids/461.png new file mode 100644 index 0000000..1b4a5d4 Binary files /dev/null and b/assets/ids/461.png differ diff --git a/assets/ids/462.png b/assets/ids/462.png new file mode 100644 index 0000000..232a002 Binary files /dev/null and b/assets/ids/462.png differ diff --git a/assets/ids/463.png b/assets/ids/463.png new file mode 100644 index 0000000..0556c9f Binary files /dev/null and b/assets/ids/463.png differ diff --git a/assets/ids/464.png b/assets/ids/464.png new file mode 100644 index 0000000..2a070bb Binary files /dev/null and b/assets/ids/464.png differ diff --git a/assets/ids/465.png b/assets/ids/465.png new file mode 100644 index 0000000..8dd3304 Binary files /dev/null and b/assets/ids/465.png differ diff --git a/assets/ids/466.png b/assets/ids/466.png new file mode 100644 index 0000000..c899ea1 Binary files /dev/null and b/assets/ids/466.png differ diff --git a/assets/ids/467.png b/assets/ids/467.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/467.png differ diff --git a/assets/ids/468.png b/assets/ids/468.png new file mode 100644 index 0000000..bc0e485 Binary files /dev/null and b/assets/ids/468.png differ diff --git a/assets/ids/469.png b/assets/ids/469.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/469.png differ diff --git a/assets/ids/47.png b/assets/ids/47.png new file mode 100644 index 0000000..6a928c0 Binary files /dev/null and b/assets/ids/47.png differ diff --git a/assets/ids/470.png b/assets/ids/470.png new file mode 100644 index 0000000..34c4351 Binary files /dev/null and b/assets/ids/470.png differ diff --git a/assets/ids/471.png b/assets/ids/471.png new file mode 100644 index 0000000..83670d6 Binary files /dev/null and b/assets/ids/471.png differ diff --git a/assets/ids/472.png b/assets/ids/472.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/472.png differ diff --git a/assets/ids/473.png b/assets/ids/473.png new file mode 100644 index 0000000..69dd0b5 Binary files /dev/null and b/assets/ids/473.png differ diff --git a/assets/ids/474.png b/assets/ids/474.png new file mode 100644 index 0000000..997f77a Binary files /dev/null and b/assets/ids/474.png differ diff --git a/assets/ids/475.png b/assets/ids/475.png new file mode 100644 index 0000000..dad47a2 Binary files /dev/null and b/assets/ids/475.png differ diff --git a/assets/ids/476.png b/assets/ids/476.png new file mode 100644 index 0000000..aeae859 Binary files /dev/null and b/assets/ids/476.png differ diff --git a/assets/ids/477.png b/assets/ids/477.png new file mode 100644 index 0000000..382258b Binary files /dev/null and b/assets/ids/477.png differ diff --git a/assets/ids/478.png b/assets/ids/478.png new file mode 100644 index 0000000..4e65338 Binary files /dev/null and b/assets/ids/478.png differ diff --git a/assets/ids/479.png b/assets/ids/479.png new file mode 100644 index 0000000..1fb3c17 Binary files /dev/null and b/assets/ids/479.png differ diff --git a/assets/ids/48.png b/assets/ids/48.png new file mode 100644 index 0000000..508eb9e Binary files /dev/null and b/assets/ids/48.png differ diff --git a/assets/ids/480.png b/assets/ids/480.png new file mode 100644 index 0000000..f428f45 Binary files /dev/null and b/assets/ids/480.png differ diff --git a/assets/ids/481.png b/assets/ids/481.png new file mode 100644 index 0000000..5e6ddf2 Binary files /dev/null and b/assets/ids/481.png differ diff --git a/assets/ids/482.png b/assets/ids/482.png new file mode 100644 index 0000000..7a99fe8 Binary files /dev/null and b/assets/ids/482.png differ diff --git a/assets/ids/483.png b/assets/ids/483.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/483.png differ diff --git a/assets/ids/484.png b/assets/ids/484.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/484.png differ diff --git a/assets/ids/485.png b/assets/ids/485.png new file mode 100644 index 0000000..715cf27 Binary files /dev/null and b/assets/ids/485.png differ diff --git a/assets/ids/486.png b/assets/ids/486.png new file mode 100644 index 0000000..0e1b26f Binary files /dev/null and b/assets/ids/486.png differ diff --git a/assets/ids/487.png b/assets/ids/487.png new file mode 100644 index 0000000..3c6a497 Binary files /dev/null and b/assets/ids/487.png differ diff --git a/assets/ids/488.png b/assets/ids/488.png new file mode 100644 index 0000000..e696ba8 Binary files /dev/null and b/assets/ids/488.png differ diff --git a/assets/ids/489.png b/assets/ids/489.png new file mode 100644 index 0000000..0e1b26f Binary files /dev/null and b/assets/ids/489.png differ diff --git a/assets/ids/49.png b/assets/ids/49.png new file mode 100644 index 0000000..ae802de Binary files /dev/null and b/assets/ids/49.png differ diff --git a/assets/ids/490.png b/assets/ids/490.png new file mode 100644 index 0000000..adcd08f Binary files /dev/null and b/assets/ids/490.png differ diff --git a/assets/ids/491.png b/assets/ids/491.png new file mode 100644 index 0000000..0e1b26f Binary files /dev/null and b/assets/ids/491.png differ diff --git a/assets/ids/492.png b/assets/ids/492.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/492.png differ diff --git a/assets/ids/493.png b/assets/ids/493.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/493.png differ diff --git a/assets/ids/494.png b/assets/ids/494.png new file mode 100644 index 0000000..8d37a86 Binary files /dev/null and b/assets/ids/494.png differ diff --git a/assets/ids/495.png b/assets/ids/495.png new file mode 100644 index 0000000..8d0abb9 Binary files /dev/null and b/assets/ids/495.png differ diff --git a/assets/ids/496.png b/assets/ids/496.png new file mode 100644 index 0000000..9e62fd6 Binary files /dev/null and b/assets/ids/496.png differ diff --git a/assets/ids/497.png b/assets/ids/497.png new file mode 100644 index 0000000..3f0f064 Binary files /dev/null and b/assets/ids/497.png differ diff --git a/assets/ids/498.png b/assets/ids/498.png new file mode 100644 index 0000000..22ae123 Binary files /dev/null and b/assets/ids/498.png differ diff --git a/assets/ids/499.png b/assets/ids/499.png new file mode 100644 index 0000000..f0446db Binary files /dev/null and b/assets/ids/499.png differ diff --git a/assets/ids/5.png b/assets/ids/5.png new file mode 100644 index 0000000..0ff2cbe Binary files /dev/null and b/assets/ids/5.png differ diff --git a/assets/ids/50.png b/assets/ids/50.png new file mode 100644 index 0000000..a54ec33 Binary files /dev/null and b/assets/ids/50.png differ diff --git a/assets/ids/500.png b/assets/ids/500.png new file mode 100644 index 0000000..d7d5f2c Binary files /dev/null and b/assets/ids/500.png differ diff --git a/assets/ids/501.png b/assets/ids/501.png new file mode 100644 index 0000000..a674954 Binary files /dev/null and b/assets/ids/501.png differ diff --git a/assets/ids/502.png b/assets/ids/502.png new file mode 100644 index 0000000..0008e8f Binary files /dev/null and b/assets/ids/502.png differ diff --git a/assets/ids/503.png b/assets/ids/503.png new file mode 100644 index 0000000..4140cea Binary files /dev/null and b/assets/ids/503.png differ diff --git a/assets/ids/504.png b/assets/ids/504.png new file mode 100644 index 0000000..a7bba6f Binary files /dev/null and b/assets/ids/504.png differ diff --git a/assets/ids/505.png b/assets/ids/505.png new file mode 100644 index 0000000..d8821e9 Binary files /dev/null and b/assets/ids/505.png differ diff --git a/assets/ids/506.png b/assets/ids/506.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/506.png differ diff --git a/assets/ids/507.png b/assets/ids/507.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/507.png differ diff --git a/assets/ids/508.png b/assets/ids/508.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/508.png differ diff --git a/assets/ids/509.png b/assets/ids/509.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/509.png differ diff --git a/assets/ids/51.png b/assets/ids/51.png new file mode 100644 index 0000000..497bc47 Binary files /dev/null and b/assets/ids/51.png differ diff --git a/assets/ids/510.png b/assets/ids/510.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/510.png differ diff --git a/assets/ids/511.png b/assets/ids/511.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/511.png differ diff --git a/assets/ids/512.png b/assets/ids/512.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/512.png differ diff --git a/assets/ids/513.png b/assets/ids/513.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/513.png differ diff --git a/assets/ids/514.png b/assets/ids/514.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/514.png differ diff --git a/assets/ids/515.png b/assets/ids/515.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/515.png differ diff --git a/assets/ids/516.png b/assets/ids/516.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/516.png differ diff --git a/assets/ids/517.png b/assets/ids/517.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/517.png differ diff --git a/assets/ids/518.png b/assets/ids/518.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/518.png differ diff --git a/assets/ids/519.png b/assets/ids/519.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/519.png differ diff --git a/assets/ids/52.png b/assets/ids/52.png new file mode 100644 index 0000000..dd79859 Binary files /dev/null and b/assets/ids/52.png differ diff --git a/assets/ids/520.png b/assets/ids/520.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/520.png differ diff --git a/assets/ids/521.png b/assets/ids/521.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/521.png differ diff --git a/assets/ids/522.png b/assets/ids/522.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/522.png differ diff --git a/assets/ids/523.png b/assets/ids/523.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/523.png differ diff --git a/assets/ids/524.png b/assets/ids/524.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/524.png differ diff --git a/assets/ids/525.png b/assets/ids/525.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/525.png differ diff --git a/assets/ids/526.png b/assets/ids/526.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/526.png differ diff --git a/assets/ids/527.png b/assets/ids/527.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/527.png differ diff --git a/assets/ids/528.png b/assets/ids/528.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/528.png differ diff --git a/assets/ids/529.png b/assets/ids/529.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/529.png differ diff --git a/assets/ids/53.png b/assets/ids/53.png new file mode 100644 index 0000000..e6adfd0 Binary files /dev/null and b/assets/ids/53.png differ diff --git a/assets/ids/530.png b/assets/ids/530.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/530.png differ diff --git a/assets/ids/531.png b/assets/ids/531.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/531.png differ diff --git a/assets/ids/532.png b/assets/ids/532.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/532.png differ diff --git a/assets/ids/533.png b/assets/ids/533.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/533.png differ diff --git a/assets/ids/534.png b/assets/ids/534.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/534.png differ diff --git a/assets/ids/535.png b/assets/ids/535.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/535.png differ diff --git a/assets/ids/536.png b/assets/ids/536.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/536.png differ diff --git a/assets/ids/537.png b/assets/ids/537.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/537.png differ diff --git a/assets/ids/538.png b/assets/ids/538.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/538.png differ diff --git a/assets/ids/539.png b/assets/ids/539.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/539.png differ diff --git a/assets/ids/54.png b/assets/ids/54.png new file mode 100644 index 0000000..11dc405 Binary files /dev/null and b/assets/ids/54.png differ diff --git a/assets/ids/540.png b/assets/ids/540.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/540.png differ diff --git a/assets/ids/541.png b/assets/ids/541.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/541.png differ diff --git a/assets/ids/542.png b/assets/ids/542.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/542.png differ diff --git a/assets/ids/543.png b/assets/ids/543.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/543.png differ diff --git a/assets/ids/544.png b/assets/ids/544.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/544.png differ diff --git a/assets/ids/545.png b/assets/ids/545.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/545.png differ diff --git a/assets/ids/546.png b/assets/ids/546.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/546.png differ diff --git a/assets/ids/547.png b/assets/ids/547.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/547.png differ diff --git a/assets/ids/548.png b/assets/ids/548.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/548.png differ diff --git a/assets/ids/549.png b/assets/ids/549.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/549.png differ diff --git a/assets/ids/55.png b/assets/ids/55.png new file mode 100644 index 0000000..91d4a05 Binary files /dev/null and b/assets/ids/55.png differ diff --git a/assets/ids/550.png b/assets/ids/550.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/550.png differ diff --git a/assets/ids/551.png b/assets/ids/551.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/551.png differ diff --git a/assets/ids/552.png b/assets/ids/552.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/552.png differ diff --git a/assets/ids/553.png b/assets/ids/553.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/553.png differ diff --git a/assets/ids/554.png b/assets/ids/554.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/554.png differ diff --git a/assets/ids/555.png b/assets/ids/555.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/555.png differ diff --git a/assets/ids/556.png b/assets/ids/556.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/556.png differ diff --git a/assets/ids/557.png b/assets/ids/557.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/557.png differ diff --git a/assets/ids/558.png b/assets/ids/558.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/558.png differ diff --git a/assets/ids/559.png b/assets/ids/559.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/559.png differ diff --git a/assets/ids/56.png b/assets/ids/56.png new file mode 100644 index 0000000..6c7d061 Binary files /dev/null and b/assets/ids/56.png differ diff --git a/assets/ids/560.png b/assets/ids/560.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/560.png differ diff --git a/assets/ids/561.png b/assets/ids/561.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/561.png differ diff --git a/assets/ids/562.png b/assets/ids/562.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/562.png differ diff --git a/assets/ids/563.png b/assets/ids/563.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/563.png differ diff --git a/assets/ids/564.png b/assets/ids/564.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/564.png differ diff --git a/assets/ids/565.png b/assets/ids/565.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/565.png differ diff --git a/assets/ids/566.png b/assets/ids/566.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/566.png differ diff --git a/assets/ids/567.png b/assets/ids/567.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/567.png differ diff --git a/assets/ids/568.png b/assets/ids/568.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/568.png differ diff --git a/assets/ids/569.png b/assets/ids/569.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/569.png differ diff --git a/assets/ids/57.png b/assets/ids/57.png new file mode 100644 index 0000000..76da67d Binary files /dev/null and b/assets/ids/57.png differ diff --git a/assets/ids/570.png b/assets/ids/570.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/570.png differ diff --git a/assets/ids/571.png b/assets/ids/571.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/571.png differ diff --git a/assets/ids/572.png b/assets/ids/572.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/572.png differ diff --git a/assets/ids/573.png b/assets/ids/573.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/573.png differ diff --git a/assets/ids/574.png b/assets/ids/574.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/574.png differ diff --git a/assets/ids/575.png b/assets/ids/575.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/575.png differ diff --git a/assets/ids/576.png b/assets/ids/576.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/576.png differ diff --git a/assets/ids/577.png b/assets/ids/577.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/577.png differ diff --git a/assets/ids/578.png b/assets/ids/578.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/578.png differ diff --git a/assets/ids/579.png b/assets/ids/579.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/579.png differ diff --git a/assets/ids/58.png b/assets/ids/58.png new file mode 100644 index 0000000..f6439c5 Binary files /dev/null and b/assets/ids/58.png differ diff --git a/assets/ids/580.png b/assets/ids/580.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/580.png differ diff --git a/assets/ids/581.png b/assets/ids/581.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/581.png differ diff --git a/assets/ids/582.png b/assets/ids/582.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/582.png differ diff --git a/assets/ids/583.png b/assets/ids/583.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/583.png differ diff --git a/assets/ids/584.png b/assets/ids/584.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/584.png differ diff --git a/assets/ids/585.png b/assets/ids/585.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/585.png differ diff --git a/assets/ids/586.png b/assets/ids/586.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/586.png differ diff --git a/assets/ids/587.png b/assets/ids/587.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/587.png differ diff --git a/assets/ids/588.png b/assets/ids/588.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/588.png differ diff --git a/assets/ids/589.png b/assets/ids/589.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/589.png differ diff --git a/assets/ids/59.png b/assets/ids/59.png new file mode 100644 index 0000000..4cfdc8a Binary files /dev/null and b/assets/ids/59.png differ diff --git a/assets/ids/590.png b/assets/ids/590.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/590.png differ diff --git a/assets/ids/591.png b/assets/ids/591.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/591.png differ diff --git a/assets/ids/592.png b/assets/ids/592.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/592.png differ diff --git a/assets/ids/593.png b/assets/ids/593.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/593.png differ diff --git a/assets/ids/594.png b/assets/ids/594.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/594.png differ diff --git a/assets/ids/595.png b/assets/ids/595.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/595.png differ diff --git a/assets/ids/596.png b/assets/ids/596.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/596.png differ diff --git a/assets/ids/597.png b/assets/ids/597.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/597.png differ diff --git a/assets/ids/598.png b/assets/ids/598.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/598.png differ diff --git a/assets/ids/599.png b/assets/ids/599.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/599.png differ diff --git a/assets/ids/6.png b/assets/ids/6.png new file mode 100644 index 0000000..b4eeff2 Binary files /dev/null and b/assets/ids/6.png differ diff --git a/assets/ids/60.png b/assets/ids/60.png new file mode 100644 index 0000000..352fa30 Binary files /dev/null and b/assets/ids/60.png differ diff --git a/assets/ids/600.png b/assets/ids/600.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/600.png differ diff --git a/assets/ids/601.png b/assets/ids/601.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/601.png differ diff --git a/assets/ids/602.png b/assets/ids/602.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/602.png differ diff --git a/assets/ids/603.png b/assets/ids/603.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/603.png differ diff --git a/assets/ids/604.png b/assets/ids/604.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/604.png differ diff --git a/assets/ids/605.png b/assets/ids/605.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/605.png differ diff --git a/assets/ids/606.png b/assets/ids/606.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/606.png differ diff --git a/assets/ids/607.png b/assets/ids/607.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/607.png differ diff --git a/assets/ids/608.png b/assets/ids/608.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/608.png differ diff --git a/assets/ids/609.png b/assets/ids/609.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/609.png differ diff --git a/assets/ids/61.png b/assets/ids/61.png new file mode 100644 index 0000000..3510a02 Binary files /dev/null and b/assets/ids/61.png differ diff --git a/assets/ids/610.png b/assets/ids/610.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/610.png differ diff --git a/assets/ids/611.png b/assets/ids/611.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/611.png differ diff --git a/assets/ids/612.png b/assets/ids/612.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/612.png differ diff --git a/assets/ids/613.png b/assets/ids/613.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/613.png differ diff --git a/assets/ids/614.png b/assets/ids/614.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/614.png differ diff --git a/assets/ids/615.png b/assets/ids/615.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/615.png differ diff --git a/assets/ids/616.png b/assets/ids/616.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/616.png differ diff --git a/assets/ids/617.png b/assets/ids/617.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/617.png differ diff --git a/assets/ids/618.png b/assets/ids/618.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/618.png differ diff --git a/assets/ids/619.png b/assets/ids/619.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/619.png differ diff --git a/assets/ids/62.png b/assets/ids/62.png new file mode 100644 index 0000000..8ebcddd Binary files /dev/null and b/assets/ids/62.png differ diff --git a/assets/ids/620.png b/assets/ids/620.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/620.png differ diff --git a/assets/ids/621.png b/assets/ids/621.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/621.png differ diff --git a/assets/ids/622.png b/assets/ids/622.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/622.png differ diff --git a/assets/ids/623.png b/assets/ids/623.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/623.png differ diff --git a/assets/ids/624.png b/assets/ids/624.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/624.png differ diff --git a/assets/ids/625.png b/assets/ids/625.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/625.png differ diff --git a/assets/ids/626.png b/assets/ids/626.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/626.png differ diff --git a/assets/ids/627.png b/assets/ids/627.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/627.png differ diff --git a/assets/ids/628.png b/assets/ids/628.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/628.png differ diff --git a/assets/ids/629.png b/assets/ids/629.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/629.png differ diff --git a/assets/ids/63.png b/assets/ids/63.png new file mode 100644 index 0000000..5c1f32c Binary files /dev/null and b/assets/ids/63.png differ diff --git a/assets/ids/630.png b/assets/ids/630.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/630.png differ diff --git a/assets/ids/631.png b/assets/ids/631.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/631.png differ diff --git a/assets/ids/632.png b/assets/ids/632.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/632.png differ diff --git a/assets/ids/633.png b/assets/ids/633.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/633.png differ diff --git a/assets/ids/634.png b/assets/ids/634.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/634.png differ diff --git a/assets/ids/635.png b/assets/ids/635.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/635.png differ diff --git a/assets/ids/636.png b/assets/ids/636.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/636.png differ diff --git a/assets/ids/637.png b/assets/ids/637.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/637.png differ diff --git a/assets/ids/638.png b/assets/ids/638.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/638.png differ diff --git a/assets/ids/639.png b/assets/ids/639.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/639.png differ diff --git a/assets/ids/64.png b/assets/ids/64.png new file mode 100644 index 0000000..3c10990 Binary files /dev/null and b/assets/ids/64.png differ diff --git a/assets/ids/640.png b/assets/ids/640.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/640.png differ diff --git a/assets/ids/641.png b/assets/ids/641.png new file mode 100644 index 0000000..cc995af Binary files /dev/null and b/assets/ids/641.png differ diff --git a/assets/ids/642.png b/assets/ids/642.png new file mode 100644 index 0000000..8ad40bb Binary files /dev/null and b/assets/ids/642.png differ diff --git a/assets/ids/643.png b/assets/ids/643.png new file mode 100644 index 0000000..971c6eb Binary files /dev/null and b/assets/ids/643.png differ diff --git a/assets/ids/644.png b/assets/ids/644.png new file mode 100644 index 0000000..2e75a36 Binary files /dev/null and b/assets/ids/644.png differ diff --git a/assets/ids/645.png b/assets/ids/645.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/645.png differ diff --git a/assets/ids/646.png b/assets/ids/646.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/646.png differ diff --git a/assets/ids/647.png b/assets/ids/647.png new file mode 100644 index 0000000..a71540d Binary files /dev/null and b/assets/ids/647.png differ diff --git a/assets/ids/648.png b/assets/ids/648.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/648.png differ diff --git a/assets/ids/649.png b/assets/ids/649.png new file mode 100644 index 0000000..e9be52c Binary files /dev/null and b/assets/ids/649.png differ diff --git a/assets/ids/65.png b/assets/ids/65.png new file mode 100644 index 0000000..96ca411 Binary files /dev/null and b/assets/ids/65.png differ diff --git a/assets/ids/650.png b/assets/ids/650.png new file mode 100644 index 0000000..2e75a36 Binary files /dev/null and b/assets/ids/650.png differ diff --git a/assets/ids/651.png b/assets/ids/651.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/651.png differ diff --git a/assets/ids/652.png b/assets/ids/652.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/652.png differ diff --git a/assets/ids/653.png b/assets/ids/653.png new file mode 100644 index 0000000..a9afd6b Binary files /dev/null and b/assets/ids/653.png differ diff --git a/assets/ids/654.png b/assets/ids/654.png new file mode 100644 index 0000000..6b8852e Binary files /dev/null and b/assets/ids/654.png differ diff --git a/assets/ids/655.png b/assets/ids/655.png new file mode 100644 index 0000000..1798457 Binary files /dev/null and b/assets/ids/655.png differ diff --git a/assets/ids/656.png b/assets/ids/656.png new file mode 100644 index 0000000..b01e74b Binary files /dev/null and b/assets/ids/656.png differ diff --git a/assets/ids/657.png b/assets/ids/657.png new file mode 100644 index 0000000..9a4796b Binary files /dev/null and b/assets/ids/657.png differ diff --git a/assets/ids/658.png b/assets/ids/658.png new file mode 100644 index 0000000..0cb9536 Binary files /dev/null and b/assets/ids/658.png differ diff --git a/assets/ids/659.png b/assets/ids/659.png new file mode 100644 index 0000000..e10e9a8 Binary files /dev/null and b/assets/ids/659.png differ diff --git a/assets/ids/66.png b/assets/ids/66.png new file mode 100644 index 0000000..ab23371 Binary files /dev/null and b/assets/ids/66.png differ diff --git a/assets/ids/660.png b/assets/ids/660.png new file mode 100644 index 0000000..be8428f Binary files /dev/null and b/assets/ids/660.png differ diff --git a/assets/ids/661.png b/assets/ids/661.png new file mode 100644 index 0000000..01db752 Binary files /dev/null and b/assets/ids/661.png differ diff --git a/assets/ids/662.png b/assets/ids/662.png new file mode 100644 index 0000000..8fc2097 Binary files /dev/null and b/assets/ids/662.png differ diff --git a/assets/ids/663.png b/assets/ids/663.png new file mode 100644 index 0000000..9923c2d Binary files /dev/null and b/assets/ids/663.png differ diff --git a/assets/ids/664.png b/assets/ids/664.png new file mode 100644 index 0000000..88d9241 Binary files /dev/null and b/assets/ids/664.png differ diff --git a/assets/ids/665.png b/assets/ids/665.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/665.png differ diff --git a/assets/ids/666.png b/assets/ids/666.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/666.png differ diff --git a/assets/ids/667.png b/assets/ids/667.png new file mode 100644 index 0000000..2c4e517 Binary files /dev/null and b/assets/ids/667.png differ diff --git a/assets/ids/668.png b/assets/ids/668.png new file mode 100644 index 0000000..97771e5 Binary files /dev/null and b/assets/ids/668.png differ diff --git a/assets/ids/669.png b/assets/ids/669.png new file mode 100644 index 0000000..720632a Binary files /dev/null and b/assets/ids/669.png differ diff --git a/assets/ids/67.png b/assets/ids/67.png new file mode 100644 index 0000000..5aa656b Binary files /dev/null and b/assets/ids/67.png differ diff --git a/assets/ids/670.png b/assets/ids/670.png new file mode 100644 index 0000000..3e0c8cd Binary files /dev/null and b/assets/ids/670.png differ diff --git a/assets/ids/671.png b/assets/ids/671.png new file mode 100644 index 0000000..6a45ced Binary files /dev/null and b/assets/ids/671.png differ diff --git a/assets/ids/672.png b/assets/ids/672.png new file mode 100644 index 0000000..eb65633 Binary files /dev/null and b/assets/ids/672.png differ diff --git a/assets/ids/673.png b/assets/ids/673.png new file mode 100644 index 0000000..0856a01 Binary files /dev/null and b/assets/ids/673.png differ diff --git a/assets/ids/674.png b/assets/ids/674.png new file mode 100644 index 0000000..b58de07 Binary files /dev/null and b/assets/ids/674.png differ diff --git a/assets/ids/675.png b/assets/ids/675.png new file mode 100644 index 0000000..9c221da Binary files /dev/null and b/assets/ids/675.png differ diff --git a/assets/ids/676.png b/assets/ids/676.png new file mode 100644 index 0000000..097b654 Binary files /dev/null and b/assets/ids/676.png differ diff --git a/assets/ids/677.png b/assets/ids/677.png new file mode 100644 index 0000000..3f19e84 Binary files /dev/null and b/assets/ids/677.png differ diff --git a/assets/ids/678.png b/assets/ids/678.png new file mode 100644 index 0000000..0e3007c Binary files /dev/null and b/assets/ids/678.png differ diff --git a/assets/ids/679.png b/assets/ids/679.png new file mode 100644 index 0000000..1af8f38 Binary files /dev/null and b/assets/ids/679.png differ diff --git a/assets/ids/68.png b/assets/ids/68.png new file mode 100644 index 0000000..196b2ee Binary files /dev/null and b/assets/ids/68.png differ diff --git a/assets/ids/680.png b/assets/ids/680.png new file mode 100644 index 0000000..2aeb366 Binary files /dev/null and b/assets/ids/680.png differ diff --git a/assets/ids/681.png b/assets/ids/681.png new file mode 100644 index 0000000..6730720 Binary files /dev/null and b/assets/ids/681.png differ diff --git a/assets/ids/682.png b/assets/ids/682.png new file mode 100644 index 0000000..c9d7bcc Binary files /dev/null and b/assets/ids/682.png differ diff --git a/assets/ids/683.png b/assets/ids/683.png new file mode 100644 index 0000000..4f83db8 Binary files /dev/null and b/assets/ids/683.png differ diff --git a/assets/ids/684.png b/assets/ids/684.png new file mode 100644 index 0000000..6543363 Binary files /dev/null and b/assets/ids/684.png differ diff --git a/assets/ids/685.png b/assets/ids/685.png new file mode 100644 index 0000000..03a5da2 Binary files /dev/null and b/assets/ids/685.png differ diff --git a/assets/ids/686.png b/assets/ids/686.png new file mode 100644 index 0000000..c609ee7 Binary files /dev/null and b/assets/ids/686.png differ diff --git a/assets/ids/687.png b/assets/ids/687.png new file mode 100644 index 0000000..3d14a8f Binary files /dev/null and b/assets/ids/687.png differ diff --git a/assets/ids/688.png b/assets/ids/688.png new file mode 100644 index 0000000..8d03da1 Binary files /dev/null and b/assets/ids/688.png differ diff --git a/assets/ids/689.png b/assets/ids/689.png new file mode 100644 index 0000000..5f9d718 Binary files /dev/null and b/assets/ids/689.png differ diff --git a/assets/ids/69.png b/assets/ids/69.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/69.png differ diff --git a/assets/ids/690.png b/assets/ids/690.png new file mode 100644 index 0000000..3f015a7 Binary files /dev/null and b/assets/ids/690.png differ diff --git a/assets/ids/691.png b/assets/ids/691.png new file mode 100644 index 0000000..3cb9a8c Binary files /dev/null and b/assets/ids/691.png differ diff --git a/assets/ids/692.png b/assets/ids/692.png new file mode 100644 index 0000000..157219d Binary files /dev/null and b/assets/ids/692.png differ diff --git a/assets/ids/693.png b/assets/ids/693.png new file mode 100644 index 0000000..3d14a8f Binary files /dev/null and b/assets/ids/693.png differ diff --git a/assets/ids/694.png b/assets/ids/694.png new file mode 100644 index 0000000..8d03da1 Binary files /dev/null and b/assets/ids/694.png differ diff --git a/assets/ids/695.png b/assets/ids/695.png new file mode 100644 index 0000000..b94152c Binary files /dev/null and b/assets/ids/695.png differ diff --git a/assets/ids/696.png b/assets/ids/696.png new file mode 100644 index 0000000..bb5de4c Binary files /dev/null and b/assets/ids/696.png differ diff --git a/assets/ids/697.png b/assets/ids/697.png new file mode 100644 index 0000000..6ab2c2a Binary files /dev/null and b/assets/ids/697.png differ diff --git a/assets/ids/698.png b/assets/ids/698.png new file mode 100644 index 0000000..1f88cfc Binary files /dev/null and b/assets/ids/698.png differ diff --git a/assets/ids/699.png b/assets/ids/699.png new file mode 100644 index 0000000..b3c1b79 Binary files /dev/null and b/assets/ids/699.png differ diff --git a/assets/ids/7.png b/assets/ids/7.png new file mode 100644 index 0000000..9e03a42 Binary files /dev/null and b/assets/ids/7.png differ diff --git a/assets/ids/70.png b/assets/ids/70.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/70.png differ diff --git a/assets/ids/700.png b/assets/ids/700.png new file mode 100644 index 0000000..f1e79cb Binary files /dev/null and b/assets/ids/700.png differ diff --git a/assets/ids/701.png b/assets/ids/701.png new file mode 100644 index 0000000..d6cdfad Binary files /dev/null and b/assets/ids/701.png differ diff --git a/assets/ids/702.png b/assets/ids/702.png new file mode 100644 index 0000000..779ade9 Binary files /dev/null and b/assets/ids/702.png differ diff --git a/assets/ids/703.png b/assets/ids/703.png new file mode 100644 index 0000000..03d1223 Binary files /dev/null and b/assets/ids/703.png differ diff --git a/assets/ids/704.png b/assets/ids/704.png new file mode 100644 index 0000000..6799e39 Binary files /dev/null and b/assets/ids/704.png differ diff --git a/assets/ids/705.png b/assets/ids/705.png new file mode 100644 index 0000000..b67369f Binary files /dev/null and b/assets/ids/705.png differ diff --git a/assets/ids/706.png b/assets/ids/706.png new file mode 100644 index 0000000..2b2a474 Binary files /dev/null and b/assets/ids/706.png differ diff --git a/assets/ids/707.png b/assets/ids/707.png new file mode 100644 index 0000000..848f24d Binary files /dev/null and b/assets/ids/707.png differ diff --git a/assets/ids/708.png b/assets/ids/708.png new file mode 100644 index 0000000..94d787d Binary files /dev/null and b/assets/ids/708.png differ diff --git a/assets/ids/709.png b/assets/ids/709.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/709.png differ diff --git a/assets/ids/71.png b/assets/ids/71.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/71.png differ diff --git a/assets/ids/710.png b/assets/ids/710.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/710.png differ diff --git a/assets/ids/711.png b/assets/ids/711.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/711.png differ diff --git a/assets/ids/712.png b/assets/ids/712.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/712.png differ diff --git a/assets/ids/713.png b/assets/ids/713.png new file mode 100644 index 0000000..8449dee Binary files /dev/null and b/assets/ids/713.png differ diff --git a/assets/ids/714.png b/assets/ids/714.png new file mode 100644 index 0000000..21f4887 Binary files /dev/null and b/assets/ids/714.png differ diff --git a/assets/ids/715.png b/assets/ids/715.png new file mode 100644 index 0000000..4112927 Binary files /dev/null and b/assets/ids/715.png differ diff --git a/assets/ids/716.png b/assets/ids/716.png new file mode 100644 index 0000000..98607d2 Binary files /dev/null and b/assets/ids/716.png differ diff --git a/assets/ids/719.png b/assets/ids/719.png new file mode 100644 index 0000000..f87f35b Binary files /dev/null and b/assets/ids/719.png differ diff --git a/assets/ids/72.png b/assets/ids/72.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/72.png differ diff --git a/assets/ids/720.png b/assets/ids/720.png new file mode 100644 index 0000000..52660b9 Binary files /dev/null and b/assets/ids/720.png differ diff --git a/assets/ids/721.png b/assets/ids/721.png new file mode 100644 index 0000000..631fdef Binary files /dev/null and b/assets/ids/721.png differ diff --git a/assets/ids/722.png b/assets/ids/722.png new file mode 100644 index 0000000..d08e8f8 Binary files /dev/null and b/assets/ids/722.png differ diff --git a/assets/ids/723.png b/assets/ids/723.png new file mode 100644 index 0000000..5f3dbf3 Binary files /dev/null and b/assets/ids/723.png differ diff --git a/assets/ids/724.png b/assets/ids/724.png new file mode 100644 index 0000000..78a70ca Binary files /dev/null and b/assets/ids/724.png differ diff --git a/assets/ids/725.png b/assets/ids/725.png new file mode 100644 index 0000000..0fda87d Binary files /dev/null and b/assets/ids/725.png differ diff --git a/assets/ids/726.png b/assets/ids/726.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/726.png differ diff --git a/assets/ids/727.png b/assets/ids/727.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/727.png differ diff --git a/assets/ids/728.png b/assets/ids/728.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/728.png differ diff --git a/assets/ids/729.png b/assets/ids/729.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/729.png differ diff --git a/assets/ids/73.png b/assets/ids/73.png new file mode 100644 index 0000000..2447e4f Binary files /dev/null and b/assets/ids/73.png differ diff --git a/assets/ids/730.png b/assets/ids/730.png new file mode 100644 index 0000000..871a6d0 Binary files /dev/null and b/assets/ids/730.png differ diff --git a/assets/ids/731.png b/assets/ids/731.png new file mode 100644 index 0000000..459d13f Binary files /dev/null and b/assets/ids/731.png differ diff --git a/assets/ids/732.png b/assets/ids/732.png new file mode 100644 index 0000000..6f7a746 Binary files /dev/null and b/assets/ids/732.png differ diff --git a/assets/ids/733.png b/assets/ids/733.png new file mode 100644 index 0000000..af81bf9 Binary files /dev/null and b/assets/ids/733.png differ diff --git a/assets/ids/734.png b/assets/ids/734.png new file mode 100644 index 0000000..61d1b72 Binary files /dev/null and b/assets/ids/734.png differ diff --git a/assets/ids/735.png b/assets/ids/735.png new file mode 100644 index 0000000..87cd0f1 Binary files /dev/null and b/assets/ids/735.png differ diff --git a/assets/ids/736.png b/assets/ids/736.png new file mode 100644 index 0000000..3cc0809 Binary files /dev/null and b/assets/ids/736.png differ diff --git a/assets/ids/737.png b/assets/ids/737.png new file mode 100644 index 0000000..6ed9534 Binary files /dev/null and b/assets/ids/737.png differ diff --git a/assets/ids/738.png b/assets/ids/738.png new file mode 100644 index 0000000..b77850e Binary files /dev/null and b/assets/ids/738.png differ diff --git a/assets/ids/739.png b/assets/ids/739.png new file mode 100644 index 0000000..8ad40bb Binary files /dev/null and b/assets/ids/739.png differ diff --git a/assets/ids/74.png b/assets/ids/74.png new file mode 100644 index 0000000..34c4351 Binary files /dev/null and b/assets/ids/74.png differ diff --git a/assets/ids/740.png b/assets/ids/740.png new file mode 100644 index 0000000..84b2fb3 Binary files /dev/null and b/assets/ids/740.png differ diff --git a/assets/ids/741.png b/assets/ids/741.png new file mode 100644 index 0000000..cc5e44d Binary files /dev/null and b/assets/ids/741.png differ diff --git a/assets/ids/742.png b/assets/ids/742.png new file mode 100644 index 0000000..bc4a99d Binary files /dev/null and b/assets/ids/742.png differ diff --git a/assets/ids/744.png b/assets/ids/744.png new file mode 100644 index 0000000..5d95942 Binary files /dev/null and b/assets/ids/744.png differ diff --git a/assets/ids/745.png b/assets/ids/745.png new file mode 100644 index 0000000..f04c2a2 Binary files /dev/null and b/assets/ids/745.png differ diff --git a/assets/ids/747.png b/assets/ids/747.png new file mode 100644 index 0000000..4941ae8 Binary files /dev/null and b/assets/ids/747.png differ diff --git a/assets/ids/749.png b/assets/ids/749.png new file mode 100644 index 0000000..0a85a46 Binary files /dev/null and b/assets/ids/749.png differ diff --git a/assets/ids/75.png b/assets/ids/75.png new file mode 100644 index 0000000..83670d6 Binary files /dev/null and b/assets/ids/75.png differ diff --git a/assets/ids/752.png b/assets/ids/752.png new file mode 100644 index 0000000..42016fe Binary files /dev/null and b/assets/ids/752.png differ diff --git a/assets/ids/753.png b/assets/ids/753.png new file mode 100644 index 0000000..d760001 Binary files /dev/null and b/assets/ids/753.png differ diff --git a/assets/ids/754.png b/assets/ids/754.png new file mode 100644 index 0000000..8977843 Binary files /dev/null and b/assets/ids/754.png differ diff --git a/assets/ids/755.png b/assets/ids/755.png new file mode 100644 index 0000000..1fc2413 Binary files /dev/null and b/assets/ids/755.png differ diff --git a/assets/ids/756.png b/assets/ids/756.png new file mode 100644 index 0000000..9ec7b88 Binary files /dev/null and b/assets/ids/756.png differ diff --git a/assets/ids/757.png b/assets/ids/757.png new file mode 100644 index 0000000..0717c44 Binary files /dev/null and b/assets/ids/757.png differ diff --git a/assets/ids/758.png b/assets/ids/758.png new file mode 100644 index 0000000..1777c76 Binary files /dev/null and b/assets/ids/758.png differ diff --git a/assets/ids/759.png b/assets/ids/759.png new file mode 100644 index 0000000..4d9e40d Binary files /dev/null and b/assets/ids/759.png differ diff --git a/assets/ids/76.png b/assets/ids/76.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/76.png differ diff --git a/assets/ids/762.png b/assets/ids/762.png new file mode 100644 index 0000000..4b667ef Binary files /dev/null and b/assets/ids/762.png differ diff --git a/assets/ids/763.png b/assets/ids/763.png new file mode 100644 index 0000000..6698db9 Binary files /dev/null and b/assets/ids/763.png differ diff --git a/assets/ids/764.png b/assets/ids/764.png new file mode 100644 index 0000000..f25fb54 Binary files /dev/null and b/assets/ids/764.png differ diff --git a/assets/ids/765.png b/assets/ids/765.png new file mode 100644 index 0000000..61a70a3 Binary files /dev/null and b/assets/ids/765.png differ diff --git a/assets/ids/766.png b/assets/ids/766.png new file mode 100644 index 0000000..6dc1304 Binary files /dev/null and b/assets/ids/766.png differ diff --git a/assets/ids/767.png b/assets/ids/767.png new file mode 100644 index 0000000..948884d Binary files /dev/null and b/assets/ids/767.png differ diff --git a/assets/ids/768.png b/assets/ids/768.png new file mode 100644 index 0000000..50f930c Binary files /dev/null and b/assets/ids/768.png differ diff --git a/assets/ids/769.png b/assets/ids/769.png new file mode 100644 index 0000000..0f5de7d Binary files /dev/null and b/assets/ids/769.png differ diff --git a/assets/ids/77.png b/assets/ids/77.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/77.png differ diff --git a/assets/ids/770.png b/assets/ids/770.png new file mode 100644 index 0000000..b01fbbb Binary files /dev/null and b/assets/ids/770.png differ diff --git a/assets/ids/771.png b/assets/ids/771.png new file mode 100644 index 0000000..0769d51 Binary files /dev/null and b/assets/ids/771.png differ diff --git a/assets/ids/772.png b/assets/ids/772.png new file mode 100644 index 0000000..5b22f7c Binary files /dev/null and b/assets/ids/772.png differ diff --git a/assets/ids/773.png b/assets/ids/773.png new file mode 100644 index 0000000..bd553f2 Binary files /dev/null and b/assets/ids/773.png differ diff --git a/assets/ids/774.png b/assets/ids/774.png new file mode 100644 index 0000000..5fec017 Binary files /dev/null and b/assets/ids/774.png differ diff --git a/assets/ids/775.png b/assets/ids/775.png new file mode 100644 index 0000000..ea9e962 Binary files /dev/null and b/assets/ids/775.png differ diff --git a/assets/ids/78.png b/assets/ids/78.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/78.png differ diff --git a/assets/ids/8.png b/assets/ids/8.png new file mode 100644 index 0000000..1bf97a1 Binary files /dev/null and b/assets/ids/8.png differ diff --git a/assets/ids/80.png b/assets/ids/80.png new file mode 100644 index 0000000..a496c30 Binary files /dev/null and b/assets/ids/80.png differ diff --git a/assets/ids/807.png b/assets/ids/807.png new file mode 100644 index 0000000..2437288 Binary files /dev/null and b/assets/ids/807.png differ diff --git a/assets/ids/808.png b/assets/ids/808.png new file mode 100644 index 0000000..2437288 Binary files /dev/null and b/assets/ids/808.png differ diff --git a/assets/ids/809.png b/assets/ids/809.png new file mode 100644 index 0000000..5a65452 Binary files /dev/null and b/assets/ids/809.png differ diff --git a/assets/ids/81.png b/assets/ids/81.png new file mode 100644 index 0000000..2251bf5 Binary files /dev/null and b/assets/ids/81.png differ diff --git a/assets/ids/810.png b/assets/ids/810.png new file mode 100644 index 0000000..5a65452 Binary files /dev/null and b/assets/ids/810.png differ diff --git a/assets/ids/811.png b/assets/ids/811.png new file mode 100644 index 0000000..76a9868 Binary files /dev/null and b/assets/ids/811.png differ diff --git a/assets/ids/812.png b/assets/ids/812.png new file mode 100644 index 0000000..76a9868 Binary files /dev/null and b/assets/ids/812.png differ diff --git a/assets/ids/813.png b/assets/ids/813.png new file mode 100644 index 0000000..6e68852 Binary files /dev/null and b/assets/ids/813.png differ diff --git a/assets/ids/814.png b/assets/ids/814.png new file mode 100644 index 0000000..6e68852 Binary files /dev/null and b/assets/ids/814.png differ diff --git a/assets/ids/815.png b/assets/ids/815.png new file mode 100644 index 0000000..29e162f Binary files /dev/null and b/assets/ids/815.png differ diff --git a/assets/ids/816.png b/assets/ids/816.png new file mode 100644 index 0000000..29e162f Binary files /dev/null and b/assets/ids/816.png differ diff --git a/assets/ids/817.png b/assets/ids/817.png new file mode 100644 index 0000000..fe1e2e7 Binary files /dev/null and b/assets/ids/817.png differ diff --git a/assets/ids/818.png b/assets/ids/818.png new file mode 100644 index 0000000..fe1e2e7 Binary files /dev/null and b/assets/ids/818.png differ diff --git a/assets/ids/819.png b/assets/ids/819.png new file mode 100644 index 0000000..3a6293b Binary files /dev/null and b/assets/ids/819.png differ diff --git a/assets/ids/82.png b/assets/ids/82.png new file mode 100644 index 0000000..505492b Binary files /dev/null and b/assets/ids/82.png differ diff --git a/assets/ids/820.png b/assets/ids/820.png new file mode 100644 index 0000000..3a6293b Binary files /dev/null and b/assets/ids/820.png differ diff --git a/assets/ids/821.png b/assets/ids/821.png new file mode 100644 index 0000000..67e5ddf Binary files /dev/null and b/assets/ids/821.png differ diff --git a/assets/ids/822.png b/assets/ids/822.png new file mode 100644 index 0000000..67e5ddf Binary files /dev/null and b/assets/ids/822.png differ diff --git a/assets/ids/823.png b/assets/ids/823.png new file mode 100644 index 0000000..cac19c5 Binary files /dev/null and b/assets/ids/823.png differ diff --git a/assets/ids/824.png b/assets/ids/824.png new file mode 100644 index 0000000..cac19c5 Binary files /dev/null and b/assets/ids/824.png differ diff --git a/assets/ids/825.png b/assets/ids/825.png new file mode 100644 index 0000000..cac19c5 Binary files /dev/null and b/assets/ids/825.png differ diff --git a/assets/ids/826.png b/assets/ids/826.png new file mode 100644 index 0000000..97798a0 Binary files /dev/null and b/assets/ids/826.png differ diff --git a/assets/ids/827.png b/assets/ids/827.png new file mode 100644 index 0000000..97798a0 Binary files /dev/null and b/assets/ids/827.png differ diff --git a/assets/ids/828.png b/assets/ids/828.png new file mode 100644 index 0000000..4e4123b Binary files /dev/null and b/assets/ids/828.png differ diff --git a/assets/ids/829.png b/assets/ids/829.png new file mode 100644 index 0000000..4e4123b Binary files /dev/null and b/assets/ids/829.png differ diff --git a/assets/ids/83.png b/assets/ids/83.png new file mode 100644 index 0000000..8963ea1 Binary files /dev/null and b/assets/ids/83.png differ diff --git a/assets/ids/830.png b/assets/ids/830.png new file mode 100644 index 0000000..fe6f81c Binary files /dev/null and b/assets/ids/830.png differ diff --git a/assets/ids/831.png b/assets/ids/831.png new file mode 100644 index 0000000..fe6f81c Binary files /dev/null and b/assets/ids/831.png differ diff --git a/assets/ids/832.png b/assets/ids/832.png new file mode 100644 index 0000000..cd3e1d6 Binary files /dev/null and b/assets/ids/832.png differ diff --git a/assets/ids/833.png b/assets/ids/833.png new file mode 100644 index 0000000..cd3e1d6 Binary files /dev/null and b/assets/ids/833.png differ diff --git a/assets/ids/84.png b/assets/ids/84.png new file mode 100644 index 0000000..a10bbf7 Binary files /dev/null and b/assets/ids/84.png differ diff --git a/assets/ids/841.png b/assets/ids/841.png new file mode 100644 index 0000000..dd58e1f Binary files /dev/null and b/assets/ids/841.png differ diff --git a/assets/ids/842.png b/assets/ids/842.png new file mode 100644 index 0000000..5a8d8c8 Binary files /dev/null and b/assets/ids/842.png differ diff --git a/assets/ids/843.png b/assets/ids/843.png new file mode 100644 index 0000000..5b05016 Binary files /dev/null and b/assets/ids/843.png differ diff --git a/assets/ids/844.png b/assets/ids/844.png new file mode 100644 index 0000000..5b05016 Binary files /dev/null and b/assets/ids/844.png differ diff --git a/assets/ids/845.png b/assets/ids/845.png new file mode 100644 index 0000000..5a8d8c8 Binary files /dev/null and b/assets/ids/845.png differ diff --git a/assets/ids/846.png b/assets/ids/846.png new file mode 100644 index 0000000..19a3359 Binary files /dev/null and b/assets/ids/846.png differ diff --git a/assets/ids/847.png b/assets/ids/847.png new file mode 100644 index 0000000..539f7b0 Binary files /dev/null and b/assets/ids/847.png differ diff --git a/assets/ids/848.png b/assets/ids/848.png new file mode 100644 index 0000000..449b679 Binary files /dev/null and b/assets/ids/848.png differ diff --git a/assets/ids/85.png b/assets/ids/85.png new file mode 100644 index 0000000..3b2f602 Binary files /dev/null and b/assets/ids/85.png differ diff --git a/assets/ids/850.png b/assets/ids/850.png new file mode 100644 index 0000000..7bf43d6 Binary files /dev/null and b/assets/ids/850.png differ diff --git a/assets/ids/853.png b/assets/ids/853.png new file mode 100644 index 0000000..3b5d41d Binary files /dev/null and b/assets/ids/853.png differ diff --git a/assets/ids/854.png b/assets/ids/854.png new file mode 100644 index 0000000..40c71af Binary files /dev/null and b/assets/ids/854.png differ diff --git a/assets/ids/855.png b/assets/ids/855.png new file mode 100644 index 0000000..5ce604e Binary files /dev/null and b/assets/ids/855.png differ diff --git a/assets/ids/856.png b/assets/ids/856.png new file mode 100644 index 0000000..4e2d4d0 Binary files /dev/null and b/assets/ids/856.png differ diff --git a/assets/ids/857.png b/assets/ids/857.png new file mode 100644 index 0000000..160b601 Binary files /dev/null and b/assets/ids/857.png differ diff --git a/assets/ids/859.png b/assets/ids/859.png new file mode 100644 index 0000000..27b9900 Binary files /dev/null and b/assets/ids/859.png differ diff --git a/assets/ids/86.png b/assets/ids/86.png new file mode 100644 index 0000000..e1b6431 Binary files /dev/null and b/assets/ids/86.png differ diff --git a/assets/ids/861.png b/assets/ids/861.png new file mode 100644 index 0000000..8c9bb78 Binary files /dev/null and b/assets/ids/861.png differ diff --git a/assets/ids/862.png b/assets/ids/862.png new file mode 100644 index 0000000..d5145f6 Binary files /dev/null and b/assets/ids/862.png differ diff --git a/assets/ids/863.png b/assets/ids/863.png new file mode 100644 index 0000000..9dcebbc Binary files /dev/null and b/assets/ids/863.png differ diff --git a/assets/ids/867.png b/assets/ids/867.png new file mode 100644 index 0000000..4a99e4e Binary files /dev/null and b/assets/ids/867.png differ diff --git a/assets/ids/868.png b/assets/ids/868.png new file mode 100644 index 0000000..bcb3cc1 Binary files /dev/null and b/assets/ids/868.png differ diff --git a/assets/ids/869.png b/assets/ids/869.png new file mode 100644 index 0000000..6810ee0 Binary files /dev/null and b/assets/ids/869.png differ diff --git a/assets/ids/87.png b/assets/ids/87.png new file mode 100644 index 0000000..a5b9c8f Binary files /dev/null and b/assets/ids/87.png differ diff --git a/assets/ids/870.png b/assets/ids/870.png new file mode 100644 index 0000000..4d0090a Binary files /dev/null and b/assets/ids/870.png differ diff --git a/assets/ids/871.png b/assets/ids/871.png new file mode 100644 index 0000000..1854bd5 Binary files /dev/null and b/assets/ids/871.png differ diff --git a/assets/ids/872.png b/assets/ids/872.png new file mode 100644 index 0000000..a0ce820 Binary files /dev/null and b/assets/ids/872.png differ diff --git a/assets/ids/873.png b/assets/ids/873.png new file mode 100644 index 0000000..4019729 Binary files /dev/null and b/assets/ids/873.png differ diff --git a/assets/ids/874.png b/assets/ids/874.png new file mode 100644 index 0000000..db98a70 Binary files /dev/null and b/assets/ids/874.png differ diff --git a/assets/ids/877.png b/assets/ids/877.png new file mode 100644 index 0000000..762fce1 Binary files /dev/null and b/assets/ids/877.png differ diff --git a/assets/ids/878.png b/assets/ids/878.png new file mode 100644 index 0000000..83be674 Binary files /dev/null and b/assets/ids/878.png differ diff --git a/assets/ids/88.png b/assets/ids/88.png new file mode 100644 index 0000000..055baa8 Binary files /dev/null and b/assets/ids/88.png differ diff --git a/assets/ids/880.png b/assets/ids/880.png new file mode 100644 index 0000000..74d70cb Binary files /dev/null and b/assets/ids/880.png differ diff --git a/assets/ids/881.png b/assets/ids/881.png new file mode 100644 index 0000000..f8edd96 Binary files /dev/null and b/assets/ids/881.png differ diff --git a/assets/ids/882.png b/assets/ids/882.png new file mode 100644 index 0000000..459dea3 Binary files /dev/null and b/assets/ids/882.png differ diff --git a/assets/ids/883.png b/assets/ids/883.png new file mode 100644 index 0000000..7aaff24 Binary files /dev/null and b/assets/ids/883.png differ diff --git a/assets/ids/884.png b/assets/ids/884.png new file mode 100644 index 0000000..23d3114 Binary files /dev/null and b/assets/ids/884.png differ diff --git a/assets/ids/885.png b/assets/ids/885.png new file mode 100644 index 0000000..229e98d Binary files /dev/null and b/assets/ids/885.png differ diff --git a/assets/ids/886.png b/assets/ids/886.png new file mode 100644 index 0000000..5226d44 Binary files /dev/null and b/assets/ids/886.png differ diff --git a/assets/ids/887.png b/assets/ids/887.png new file mode 100644 index 0000000..7832b9f Binary files /dev/null and b/assets/ids/887.png differ diff --git a/assets/ids/888.png b/assets/ids/888.png new file mode 100644 index 0000000..a37b72b Binary files /dev/null and b/assets/ids/888.png differ diff --git a/assets/ids/889.png b/assets/ids/889.png new file mode 100644 index 0000000..b5830f6 Binary files /dev/null and b/assets/ids/889.png differ diff --git a/assets/ids/89.png b/assets/ids/89.png new file mode 100644 index 0000000..98bb749 Binary files /dev/null and b/assets/ids/89.png differ diff --git a/assets/ids/890.png b/assets/ids/890.png new file mode 100644 index 0000000..9d2c0e2 Binary files /dev/null and b/assets/ids/890.png differ diff --git a/assets/ids/891.png b/assets/ids/891.png new file mode 100644 index 0000000..682fa97 Binary files /dev/null and b/assets/ids/891.png differ diff --git a/assets/ids/893.png b/assets/ids/893.png new file mode 100644 index 0000000..abd8ade Binary files /dev/null and b/assets/ids/893.png differ diff --git a/assets/ids/894.png b/assets/ids/894.png new file mode 100644 index 0000000..7008581 Binary files /dev/null and b/assets/ids/894.png differ diff --git a/assets/ids/895.png b/assets/ids/895.png new file mode 100644 index 0000000..40fdbb6 Binary files /dev/null and b/assets/ids/895.png differ diff --git a/assets/ids/896.png b/assets/ids/896.png new file mode 100644 index 0000000..4145abf Binary files /dev/null and b/assets/ids/896.png differ diff --git a/assets/ids/899.png b/assets/ids/899.png new file mode 100644 index 0000000..b651346 Binary files /dev/null and b/assets/ids/899.png differ diff --git a/assets/ids/9.png b/assets/ids/9.png new file mode 100644 index 0000000..6482d6b Binary files /dev/null and b/assets/ids/9.png differ diff --git a/assets/ids/90.png b/assets/ids/90.png new file mode 100644 index 0000000..f5e4950 Binary files /dev/null and b/assets/ids/90.png differ diff --git a/assets/ids/900.png b/assets/ids/900.png new file mode 100644 index 0000000..c2c6074 Binary files /dev/null and b/assets/ids/900.png differ diff --git a/assets/ids/901.png b/assets/ids/901.png new file mode 100644 index 0000000..8f14586 Binary files /dev/null and b/assets/ids/901.png differ diff --git a/assets/ids/902.png b/assets/ids/902.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/902.png differ diff --git a/assets/ids/903.png b/assets/ids/903.png new file mode 100644 index 0000000..5bbf838 Binary files /dev/null and b/assets/ids/903.png differ diff --git a/assets/ids/904.png b/assets/ids/904.png new file mode 100644 index 0000000..581ba93 Binary files /dev/null and b/assets/ids/904.png differ diff --git a/assets/ids/905.png b/assets/ids/905.png new file mode 100644 index 0000000..70bfce5 Binary files /dev/null and b/assets/ids/905.png differ diff --git a/assets/ids/906.png b/assets/ids/906.png new file mode 100644 index 0000000..42185cd Binary files /dev/null and b/assets/ids/906.png differ diff --git a/assets/ids/907.png b/assets/ids/907.png new file mode 100644 index 0000000..826f98a Binary files /dev/null and b/assets/ids/907.png differ diff --git a/assets/ids/908.png b/assets/ids/908.png new file mode 100644 index 0000000..ead60bd Binary files /dev/null and b/assets/ids/908.png differ diff --git a/assets/ids/909.png b/assets/ids/909.png new file mode 100644 index 0000000..137050b Binary files /dev/null and b/assets/ids/909.png differ diff --git a/assets/ids/91.png b/assets/ids/91.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/91.png differ diff --git a/assets/ids/910.png b/assets/ids/910.png new file mode 100644 index 0000000..8181e1b Binary files /dev/null and b/assets/ids/910.png differ diff --git a/assets/ids/911.png b/assets/ids/911.png new file mode 100644 index 0000000..fde16ad Binary files /dev/null and b/assets/ids/911.png differ diff --git a/assets/ids/914.png b/assets/ids/914.png new file mode 100644 index 0000000..bfa9bb2 Binary files /dev/null and b/assets/ids/914.png differ diff --git a/assets/ids/915.png b/assets/ids/915.png new file mode 100644 index 0000000..ee96176 Binary files /dev/null and b/assets/ids/915.png differ diff --git a/assets/ids/916.png b/assets/ids/916.png new file mode 100644 index 0000000..e7cf838 Binary files /dev/null and b/assets/ids/916.png differ diff --git a/assets/ids/917.png b/assets/ids/917.png new file mode 100644 index 0000000..6f6b331 Binary files /dev/null and b/assets/ids/917.png differ diff --git a/assets/ids/919.png b/assets/ids/919.png new file mode 100644 index 0000000..3b8a3b5 Binary files /dev/null and b/assets/ids/919.png differ diff --git a/assets/ids/92.png b/assets/ids/92.png new file mode 100644 index 0000000..256cd4c Binary files /dev/null and b/assets/ids/92.png differ diff --git a/assets/ids/925.png b/assets/ids/925.png new file mode 100644 index 0000000..11141a7 Binary files /dev/null and b/assets/ids/925.png differ diff --git a/assets/ids/926.png b/assets/ids/926.png new file mode 100644 index 0000000..391c539 Binary files /dev/null and b/assets/ids/926.png differ diff --git a/assets/ids/927.png b/assets/ids/927.png new file mode 100644 index 0000000..b14fe13 Binary files /dev/null and b/assets/ids/927.png differ diff --git a/assets/ids/928.png b/assets/ids/928.png new file mode 100644 index 0000000..e84f3ef Binary files /dev/null and b/assets/ids/928.png differ diff --git a/assets/ids/929.png b/assets/ids/929.png new file mode 100644 index 0000000..28cf9e4 Binary files /dev/null and b/assets/ids/929.png differ diff --git a/assets/ids/93.png b/assets/ids/93.png new file mode 100644 index 0000000..ebe72b1 Binary files /dev/null and b/assets/ids/93.png differ diff --git a/assets/ids/930.png b/assets/ids/930.png new file mode 100644 index 0000000..2faf82d Binary files /dev/null and b/assets/ids/930.png differ diff --git a/assets/ids/931.png b/assets/ids/931.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/931.png differ diff --git a/assets/ids/932.png b/assets/ids/932.png new file mode 100644 index 0000000..c3345c9 Binary files /dev/null and b/assets/ids/932.png differ diff --git a/assets/ids/933.png b/assets/ids/933.png new file mode 100644 index 0000000..65137fd Binary files /dev/null and b/assets/ids/933.png differ diff --git a/assets/ids/934.png b/assets/ids/934.png new file mode 100644 index 0000000..b534910 Binary files /dev/null and b/assets/ids/934.png differ diff --git a/assets/ids/935.png b/assets/ids/935.png new file mode 100644 index 0000000..e39d708 Binary files /dev/null and b/assets/ids/935.png differ diff --git a/assets/ids/936.png b/assets/ids/936.png new file mode 100644 index 0000000..9aec31f Binary files /dev/null and b/assets/ids/936.png differ diff --git a/assets/ids/937.png b/assets/ids/937.png new file mode 100644 index 0000000..5e621d2 Binary files /dev/null and b/assets/ids/937.png differ diff --git a/assets/ids/938.png b/assets/ids/938.png new file mode 100644 index 0000000..cb70c64 Binary files /dev/null and b/assets/ids/938.png differ diff --git a/assets/ids/939.png b/assets/ids/939.png new file mode 100644 index 0000000..6edba76 Binary files /dev/null and b/assets/ids/939.png differ diff --git a/assets/ids/94.png b/assets/ids/94.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/94.png differ diff --git a/assets/ids/940.png b/assets/ids/940.png new file mode 100644 index 0000000..48909ff Binary files /dev/null and b/assets/ids/940.png differ diff --git a/assets/ids/941.png b/assets/ids/941.png new file mode 100644 index 0000000..bc88a7a Binary files /dev/null and b/assets/ids/941.png differ diff --git a/assets/ids/942.png b/assets/ids/942.png new file mode 100644 index 0000000..8a92bb2 Binary files /dev/null and b/assets/ids/942.png differ diff --git a/assets/ids/943.png b/assets/ids/943.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/943.png differ diff --git a/assets/ids/944.png b/assets/ids/944.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/944.png differ diff --git a/assets/ids/945.png b/assets/ids/945.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/945.png differ diff --git a/assets/ids/946.png b/assets/ids/946.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/946.png differ diff --git a/assets/ids/947.png b/assets/ids/947.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/947.png differ diff --git a/assets/ids/948.png b/assets/ids/948.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/948.png differ diff --git a/assets/ids/949.png b/assets/ids/949.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/949.png differ diff --git a/assets/ids/95.png b/assets/ids/95.png new file mode 100644 index 0000000..34c4351 Binary files /dev/null and b/assets/ids/95.png differ diff --git a/assets/ids/950.png b/assets/ids/950.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/950.png differ diff --git a/assets/ids/951.png b/assets/ids/951.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/951.png differ diff --git a/assets/ids/952.png b/assets/ids/952.png new file mode 100644 index 0000000..e72c8ed Binary files /dev/null and b/assets/ids/952.png differ diff --git a/assets/ids/953.png b/assets/ids/953.png new file mode 100644 index 0000000..7e95d15 Binary files /dev/null and b/assets/ids/953.png differ diff --git a/assets/ids/954.png b/assets/ids/954.png new file mode 100644 index 0000000..02e74ff Binary files /dev/null and b/assets/ids/954.png differ diff --git a/assets/ids/955.png b/assets/ids/955.png new file mode 100644 index 0000000..cd522e4 Binary files /dev/null and b/assets/ids/955.png differ diff --git a/assets/ids/956.png b/assets/ids/956.png new file mode 100644 index 0000000..a1e7bb8 Binary files /dev/null and b/assets/ids/956.png differ diff --git a/assets/ids/957.png b/assets/ids/957.png new file mode 100644 index 0000000..2137cd5 Binary files /dev/null and b/assets/ids/957.png differ diff --git a/assets/ids/958.png b/assets/ids/958.png new file mode 100644 index 0000000..d5d1e26 Binary files /dev/null and b/assets/ids/958.png differ diff --git a/assets/ids/959.png b/assets/ids/959.png new file mode 100644 index 0000000..06ad1a3 Binary files /dev/null and b/assets/ids/959.png differ diff --git a/assets/ids/96.png b/assets/ids/96.png new file mode 100644 index 0000000..83670d6 Binary files /dev/null and b/assets/ids/96.png differ diff --git a/assets/ids/960.png b/assets/ids/960.png new file mode 100644 index 0000000..0037f63 Binary files /dev/null and b/assets/ids/960.png differ diff --git a/assets/ids/961.png b/assets/ids/961.png new file mode 100644 index 0000000..7440ed6 Binary files /dev/null and b/assets/ids/961.png differ diff --git a/assets/ids/964.png b/assets/ids/964.png new file mode 100644 index 0000000..d3c4cb4 Binary files /dev/null and b/assets/ids/964.png differ diff --git a/assets/ids/965.png b/assets/ids/965.png new file mode 100644 index 0000000..86d1947 Binary files /dev/null and b/assets/ids/965.png differ diff --git a/assets/ids/966.png b/assets/ids/966.png new file mode 100644 index 0000000..474d732 Binary files /dev/null and b/assets/ids/966.png differ diff --git a/assets/ids/967.png b/assets/ids/967.png new file mode 100644 index 0000000..970d114 Binary files /dev/null and b/assets/ids/967.png differ diff --git a/assets/ids/968.png b/assets/ids/968.png new file mode 100644 index 0000000..886204b Binary files /dev/null and b/assets/ids/968.png differ diff --git a/assets/ids/969.png b/assets/ids/969.png new file mode 100644 index 0000000..ecb9c72 Binary files /dev/null and b/assets/ids/969.png differ diff --git a/assets/ids/97.png b/assets/ids/97.png new file mode 100644 index 0000000..6baff34 Binary files /dev/null and b/assets/ids/97.png differ diff --git a/assets/ids/970.png b/assets/ids/970.png new file mode 100644 index 0000000..bc5d57d Binary files /dev/null and b/assets/ids/970.png differ diff --git a/assets/ids/971.png b/assets/ids/971.png new file mode 100644 index 0000000..9419b11 Binary files /dev/null and b/assets/ids/971.png differ diff --git a/assets/ids/972.png b/assets/ids/972.png new file mode 100644 index 0000000..58ba8cf Binary files /dev/null and b/assets/ids/972.png differ diff --git a/assets/ids/973.png b/assets/ids/973.png new file mode 100644 index 0000000..367c11c Binary files /dev/null and b/assets/ids/973.png differ diff --git a/assets/ids/974.png b/assets/ids/974.png new file mode 100644 index 0000000..deac370 Binary files /dev/null and b/assets/ids/974.png differ diff --git a/assets/ids/975.png b/assets/ids/975.png new file mode 100644 index 0000000..581be39 Binary files /dev/null and b/assets/ids/975.png differ diff --git a/assets/ids/976.png b/assets/ids/976.png new file mode 100644 index 0000000..9a1eeea Binary files /dev/null and b/assets/ids/976.png differ diff --git a/assets/ids/977.png b/assets/ids/977.png new file mode 100644 index 0000000..08ae2ac Binary files /dev/null and b/assets/ids/977.png differ diff --git a/assets/ids/98.png b/assets/ids/98.png new file mode 100644 index 0000000..5313bb2 Binary files /dev/null and b/assets/ids/98.png differ diff --git a/assets/ids/980.png b/assets/ids/980.png new file mode 100644 index 0000000..272c7a0 Binary files /dev/null and b/assets/ids/980.png differ diff --git a/assets/ids/981.png b/assets/ids/981.png new file mode 100644 index 0000000..f50ca06 Binary files /dev/null and b/assets/ids/981.png differ diff --git a/assets/ids/982.png b/assets/ids/982.png new file mode 100644 index 0000000..e1ee7dd Binary files /dev/null and b/assets/ids/982.png differ diff --git a/assets/ids/983.png b/assets/ids/983.png new file mode 100644 index 0000000..8166447 Binary files /dev/null and b/assets/ids/983.png differ diff --git a/assets/ids/984.png b/assets/ids/984.png new file mode 100644 index 0000000..c626418 Binary files /dev/null and b/assets/ids/984.png differ diff --git a/assets/ids/985.png b/assets/ids/985.png new file mode 100644 index 0000000..f9a4cc9 Binary files /dev/null and b/assets/ids/985.png differ diff --git a/assets/ids/986.png b/assets/ids/986.png new file mode 100644 index 0000000..f4809a5 Binary files /dev/null and b/assets/ids/986.png differ diff --git a/assets/ids/987.png b/assets/ids/987.png new file mode 100644 index 0000000..71cd2c7 Binary files /dev/null and b/assets/ids/987.png differ diff --git a/assets/ids/988.png b/assets/ids/988.png new file mode 100644 index 0000000..35b8cbf Binary files /dev/null and b/assets/ids/988.png differ diff --git a/assets/ids/989.png b/assets/ids/989.png new file mode 100644 index 0000000..d6ed4f2 Binary files /dev/null and b/assets/ids/989.png differ diff --git a/assets/ids/99.png b/assets/ids/99.png new file mode 100644 index 0000000..5ef531e Binary files /dev/null and b/assets/ids/99.png differ diff --git a/assets/ids/990.png b/assets/ids/990.png new file mode 100644 index 0000000..e98807d Binary files /dev/null and b/assets/ids/990.png differ diff --git a/assets/ids/991.png b/assets/ids/991.png new file mode 100644 index 0000000..a5b8ab6 Binary files /dev/null and b/assets/ids/991.png differ diff --git a/assets/ids/992.png b/assets/ids/992.png new file mode 100644 index 0000000..05cec0b Binary files /dev/null and b/assets/ids/992.png differ diff --git a/assets/ids/997.png b/assets/ids/997.png new file mode 100644 index 0000000..ab39b1c Binary files /dev/null and b/assets/ids/997.png differ diff --git a/assets/ids/998.png b/assets/ids/998.png new file mode 100644 index 0000000..d181ef3 Binary files /dev/null and b/assets/ids/998.png differ diff --git a/assets/ids/999.png b/assets/ids/999.png new file mode 100644 index 0000000..8205151 Binary files /dev/null and b/assets/ids/999.png differ diff --git a/misc/notableObjects.json b/misc/notableObjects.json deleted file mode 100644 index 5f8f8b7..0000000 --- a/misc/notableObjects.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "portals": { - "12": "cube", - "13": "ship", - "47": "ball", - "111": "ufo", - "660": "wave", - "745": "robot", - "1331": "spider", - "45": "mirrorOn", - "46": "mirrorOff", - "101": "mini", - "99": "big", - "286": "dual", - "287": "single", - "200": "-1x", - "201": "1x", - "202": "2x", - "203": "3x", - "1334": "4x" - }, - - "orbs": { - "36": "yellow", - "84": "blue", - "141": "pink", - "1022": "green", - "1333": "red", - "1330": "black", - "1704": "greenDash", - "1751": "pinkDash", - "1594": "trigger" - }, - - "triggers": { - "29": "Color", - "30": "Color", - "31": "StartPos", - "32": "EnableTrail", - "33": "DisableTrail", - "34": "StartPos2", - "104": "Color", - "105": "Color", - "221": "Color", - "717": "Color", - "718": "Color", - "743": "Color", - "744": "Color", - "899": "Color", - "900": "Color", - "915": "Color", - "901": "Move", - "1006": "Pulse", - "1007": "Alpha", - "1049": "Toggle", - "1268": "Spawn", - "1346": "Rotate", - "1347": "Follow", - "1520": "Shake", - "1585": "Animate", - "1595": "Touch", - "1611": "Count", - "1612": "HidePlayer", - "1613": "ShowPlayer", - "1616": "Stop", - "1811": "InstantCount", - "1812": "OnDeath", - "1814": "FollowPlayerY", - "1815": "Collision", - "1817": "Pickup", - "1818": "BGEffectOn", - "1819": "BGEffectOff", - "22": "Transition", - "24": "Transition", - "23": "Transition", - "25": "Transition", - "26": "Transition", - "27": "Transition", - "28": "Transition", - "55": "Transition", - "56": "Transition", - "57": "Transition", - "58": "Transition", - "59": "Transition", - - "1912": "Random", - "1913": "CameraZoom", - "1914": "CameraStatic", - "1916": "CameraOffset", - "1917": "Reverse", - "1931": "LevelEnd" - }, - - "misc": { - "spikes": ["Spikes", 8, 218, 458, 39, 103, 144, 392, 205, 216, 145, 217, 459, 177, 178, 179], - "saws": ["Saws", 1705, 740, 1619, 1706, 741, 742, 1620, 184, 1707, 1734, 678, 185, 1708, 1736, 187, 679, 1709, 1710, 186, 1735, 188, 680, 183], - "invisibles": ["Fading", 146, 147, 206, 204, 673, 674, 1340, 1341, 1342, 1343, 1344, 1345, 144, 205, 145, 459, 740, 741, 742], - "pickups": ["Pickups", 1614, 1598, 1587, 1275], - "texts": ["Text", 914, 1615], - "glows": ["Glow", 1888, 1763, 1762, 1293, 1270, 1269, 1012, 1013, 1011, 1886, 1759, 1758, 1291, 1274, 1273, 504, 505, 503, 1887, 1761, 1760, 1272, 1271, 1009, 1010, 1292], - "hands": ["Hands", 1844, 1845, 1846, 1847, 1848], - "pulses": ["Pulsing", 50, 52, 51, 53, 54, 60, 148, 149, 405, 132, 460, 494, 133, 136, 150, 236, 497, 495, 496, 15, 16, 17], - "breakables": ["Breakable", 143], - "collisions": ["Collisions", 1816], - "pixels": ["Pixels", 916, 917], - "clouds": ["Clouds", 936, 937, 938, 129, 130, 131], - "arrows": ["Arrows", 1768, 1766, 1603, 1844, 132, 494, 460], - "particles": ["Particles", 1586, 1700, 1519, 1618], - "monsters": ["Monsters", 918, 1327, 1328, 1584], - "fires": ["Fire", 920, 923, 924, 921] - } -} \ No newline at end of file diff --git a/misc/objects.json b/misc/objects.json index 3fd6680..5f8f8b7 100644 --- a/misc/objects.json +++ b/misc/objects.json @@ -1,1611 +1,112 @@ { - "1": "square_01_001", - "2": "square_02_001", - "3": "square_03_001", - "4": "square_04_001", - "5": "square_05_001", - "6": "square_06_001", - "7": "square_07_001", - "8": "spike_01_001", - "9": "pit_01_001", - "10": "portal_01_front_001", - "11": "portal_02_front_001", - "12": "portal_03_front_001", - "13": "portal_04_front_001", - "15": "rod_01_001", - "16": "rod_02_001", - "17": "rod_03_001", - "18": "d_spikes_01_001", - "19": "d_spikes_02_001", - "20": "d_spikes_03_001", - "21": "d_spikes_04_001", - "22": "edit_eeNoneBtn_001", - "23": "edit_eeFBBtn_001", - "24": "edit_eeFTBtn_001", - "25": "edit_eeFLBtn_001", - "26": "edit_eeFRBtn_001", - "27": "edit_eeSUBtn_001", - "28": "edit_eeSDBtn_001", - "29": "edit_eTintBGBtn_001", - "30": "edit_eTintGBtn_001", - "31": "edit_eStartPosBtn_001", - "32": "edit_eGhostEBtn_001", - "33": "edit_eGhostDBtn_001", - "34": "edit_eStartPosBtn_001", - "35": "bump_01_001", - "36": "ring_01_001", - "39": "spike_02_001", - "40": "plank_01_001", - "41": "chain_01_001", - "45": "portal_05_front_001", - "46": "portal_06_front_001", - "47": "portal_07_front_001", - "48": "d_cloud_01_001", - "49": "d_cloud_02_001", - "50": "d_ball_01_001", - "51": "d_ball_02_001", - "52": "d_ball_03_001", - "53": "d_ball_04_001", - "54": "d_ball_05_001", - "55": "edit_eeFABtn_001", - "56": "edit_eeFALBtn_001", - "57": "edit_eeFARBtn_001", - "58": "edit_eeFRHBtn_001", - "59": "edit_eeFRHInvBtn_001", - "60": "d_ball_06_001", - "61": "pit_04_001", - "62": "square_b_01_001", - "63": "square_b_02_001", - "64": "square_b_03_001", - "65": "square_b_04_001", - "66": "square_b_05_001", - "67": "gravbump_01_001", - "68": "square_b_06_001", - "69": "blockOutline_01_001", - "70": "lightsquare_01_02_001", - "71": "blockOutline_03_001", - "72": "blockOutline_06_001", - "73": "square_c_05_001", - "74": "blockOutline_04_001", - "75": "blockOutline_05_001", - "76": "lightsquare_04_02_001", - "77": "lightsquare_04_02_001", - "78": "lightsquare_04_02_001", - "80": "square_d_05_001", - "81": "lightsquare_04_02_001", - "82": "lightsquare_04_sideLine_001", - "83": "square_08_001", - "84": "gravring_01_001", - "85": "d_cogwheel_01_001", - "86": "d_cogwheel_02_001", - "87": "d_cogwheel_03_001", - "88": "sawblade_01_001", - "89": "sawblade_02_001", - "90": "blockOutline_01_001", - "91": "lightsquare_01_02_001", - "92": "blockOutline_03_001", - "93": "blockOutline_06_001", - "94": "lightsquare_01_05_color_001", - "95": "blockOutline_04_001", - "96": "blockOutline_05_001", - "97": "d_cogwheel_04_001", - "98": "sawblade_03_001", - "99": "portal_08_front_001", - "101": "portal_09_front_001", - "103": "spike_03_001", - "105": "edit_eTintObjBtn_001", - "106": "d_02_chain_01_001", - "107": "d_02_chain_02_001", - "110": "d_chain_02_001", - "111": "portal_10_front_001", - "113": "d_brick_01_001", - "114": "d_brick_02_001", - "115": "d_brick_03_001", - "116": "square_f_01_001", - "117": "square_f_02_001", - "118": "square_f_03_001", - "119": "blockOutline_06_001", - "120": "square_f_05_001", - "121": "square_f_06_001", - "122": "square_f_07_001", - "123": "d_thorn_01_001", - "124": "d_thorn_02_001", - "125": "d_thorn_03_001", - "126": "d_thorn_04_001", - "127": "d_thorn_05_001", - "128": "d_thorn_06_001", - "129": "d_cloud_03_001", - "130": "d_cloud_04_001", - "131": "d_cloud_05_001", - "132": "d_arrow_01_001", - "133": "d_exmark_01_001", - "134": "d_art_01_001", - "135": "pit_b_01_001", - "136": "d_qmark_01_001", - "137": "d_wheel_01_001", - "138": "d_wheel_02_001", - "139": "d_wheel_03_001", - "140": "bump_03_001", - "141": "ring_03_001", - "142": "secretCoin_01_001", - "143": "brick_02_001", - "144": "invis_spike_01_001", - "145": "invis_spike_03_001", - "146": "invis_square_01_001", - "147": "invis_plank_01_001", - "148": "d_ball_07_001", - "149": "d_ball_08_001", - "150": "d_cross_01_001", - "151": "d_spikeart_01_001", - "152": "d_spikeart_02_001", - "153": "d_spikeart_03_001", - "154": "d_spikewheel_01_001", - "155": "d_spikewheel_02_001", - "156": "d_spikewheel_03_001", - "157": "d_wave_01_001", - "158": "d_wave_02_001", - "159": "d_wave_03_001", - "160": "blockOutline_01_001", - "161": "lightsquare_01_02_001", - "162": "blockOutline_03_001", - "163": "blockOutline_06_001", - "164": "square_g_05_001", - "165": "blockOutline_04_001", - "166": "blockOutline_05_001", - "167": "blockOutline_06_001", - "168": "blockOutline_01_001", - "169": "blockOutline_01_001", - "170": "square_h_01_001", - "171": "square_h_02_001", - "172": "square_h_03_001", - "173": "square_h_04_001", - "174": "square_h_05_001", - "175": "square_h_06_001", - "176": "square_h_07_001", - "177": "iceSpike_01_001", - "178": "iceSpike_02_001", - "179": "iceSpike_03_001", - "180": "d_cartwheel_01_001", - "181": "d_cartwheel_02_001", - "182": "d_cartwheel_03_001", - "183": "blade_b_01_001", - "184": "blade_b_02_001", - "185": "blade_b_03_001", - "186": "blade_01_001", - "187": "blade_02_001", - "188": "blade_03_001", - "190": "d_art_02_001", - "191": "fakeSpike_01_001", - "192": "square_h_08_001", - "193": "square_g_11_001", - "194": "square_h_09_001", - "195": "square_01_small_001", - "196": "plank_01_small_001", - "197": "square_h_10_001", - "198": "fakeSpike_02_001", - "199": "fakeSpike_03_001", - "200": "boost_01_001", - "201": "boost_02_001", - "202": "boost_03_001", - "203": "boost_04_001", - "204": "invis_plank_01_small_001", - "205": "invis_spike_02_001", - "206": "invis_square_01_small_001", - "207": "lightsquare_01_01_001", - "208": "lightsquare_01_02_001", - "209": "lightsquare_01_03_001", - "210": "lightsquare_01_04_001", - "211": "lightsquare_01_05_color_001", - "212": "lightsquare_01_06_001", - "213": "lightsquare_01_07_001", - "215": "colorPlank_01_001", - "216": "colorSpike_01_001", - "217": "colorSpike_02_001", - "218": "colorSpike_03_001", - "219": "colorPlank_01_small_001", - "220": "colorSquare_01_small_001", - "222": "d_roundCloud_01_001", - "223": "d_roundCloud_02_001", - "224": "d_roundCloud_03_001", - "225": "d_swirve_01_001", - "226": "d_swirve_02_001", - "227": "d_bar_01_001", - "228": "d_bar_02_001", - "229": "d_bar_03_001", - "230": "d_bar_04_001", - "231": "d_smallbar_01_001", - "232": "d_smallbar_02_001", - "233": "d_square_03_01_001", - "234": "d_square_03_02_001", - "235": "d_square_03_03_001", - "236": "d_circle_01_001", - "237": "d_link_01_001", - "238": "d_link_02_001", - "239": "d_link_03_001", - "240": "d_link_04_001", - "241": "d_link_05_001", - "242": "d_bar_07_001", - "243": "pit_04_02_001", - "244": "pit_04_03_001", - "245": "square_f_brick01_001", - "246": "square_f_brick02_001", - "247": "lightsquare_02_01_001", - "248": "lightsquare_02_02_001", - "249": "lightsquare_02_03_001", - "250": "lightsquare_02_04_001", - "251": "lightsquare_02_05_color_001", - "252": "lightsquare_02_06_001", - "253": "lightsquare_02_07_001", - "254": "lightsquare_02_08_001", - "255": "lightsquare_03_01_001", - "256": "lightsquare_03_02_001", - "257": "lightsquare_03_03_001", - "258": "lightsquare_03_04_001", - "259": "lightsquare_03_05_color_001", - "260": "lightsquare_03_06_001", - "261": "lightsquare_03_07_001", - "263": "lightsquare_04_02_001", - "264": "lightsquare_04_02_001", - "265": "lightsquare_04_02_001", - "266": "lightsquare_04_05_color_001", - "267": "lightsquare_04_02_001", - "268": "lightsquare_04_sideLine_001", - "269": "lightsquare_05_01_001", - "270": "lightsquare_05_02_001", - "271": "lightsquare_05_03_001", - "272": "lightsquare_05_04_001", - "273": "lightsquare_05_05_color_001", - "274": "lightsquare_05_06_001", - "275": "lightsquare_05_07_001", - "277": "lightsquare_05_brick02_001", - "278": "lightsquare_05_brick03_001", - "279": "d_square_01_001", - "280": "d_square_02_001", - "281": "d_square_04_001", - "282": "d_square_05_001", - "283": "d_smallbar_03_001", - "284": "d_smallbar_04_001", - "285": "d_smallbar_05_001", - "286": "portal_11_front_001", - "287": "portal_12_front_001", - "289": "blockOutline_14_001", - "291": "blockOutline_15_001", - "294": "blockOutline_14_001", - "295": "blockOutline_15_001", - "296": "triangle_b_square_01_001", - "297": "triangle_b_square_02_001", - "299": "blockOutline_14_001", - "301": "blockOutline_15_001", - "305": "blockOutline_16_001", - "307": "blockOutline_17_001", - "309": "blockOutline_14_001", - "311": "blockOutline_15_001", - "315": "blockOutline_14_001", - "317": "blockOutline_15_001", - "321": "blockOutline_14_001", - "323": "blockOutline_15_001", - "324": "triangle_g_square_01_001", - "325": "triangle_g_square_02_001", - "326": "triangle_h_01_001", - "327": "triangle_h_02_001", - "328": "triangle_h_square_01_001", - "329": "triangle_h_square_02_001", - "331": "blockOutline_14_001", - "333": "blockOutline_15_001", - "337": "blockOutline_14_001", - "339": "blockOutline_15_001", - "343": "blockOutline_14_001", - "345": "blockOutline_15_001", - "349": "blockOutline_16_001", - "351": "blockOutline_17_001", - "353": "blockOutline_14_001", - "355": "blockOutline_15_001", - "358": "triangle_g_square_03_001", - "363": "pit_01_slope_01_001", - "364": "pit_01_slope_02_001", - "365": "pit_01_low_001", - "366": "pit_04_slope_01_001", - "367": "pit_04_slope_02_001", - "368": "pit_04_low_001", - "369": "plank_01_02_001", - "370": "plank_01_03_001", - "371": "blockOutline_14_001", - "372": "blockOutline_15_001", - "373": "plank_01_square_01_001", - "374": "plank_01_square_02_001", - "375": "d_rotatingBall_01_001", - "376": "d_rotatingBall_02_001", - "377": "d_rotatingBall_03_001", - "378": "d_rotatingBall_04_001", - "392": "spike_04_001", - "393": "fakeSpike_04_001", - "394": "d_geometric_01_001", - "395": "d_geometric_02_001", - "396": "d_geometric_03_001", - "397": "darkblade_01_001", - "398": "darkblade_02_001", - "399": "darkblade_03_001", - "405": "d_ball_09_001", - "406": "d_grass_01_001", - "407": "d_grass_02_001", - "408": "d_grass_03_001", - "409": "d_link_b_01_001", - "410": "d_link_b_02_001", - "411": "d_link_b_03_001", - "412": "d_link_b_04_001", - "413": "d_link_b_05_001", - "414": "d_grass_04_001", - "419": "d_spikeWave_01_001", - "420": "d_spikeWave_02_001", - "421": "pit_05_001", - "422": "pit_05_02_001", - "446": "pit_06_001", - "447": "pit_06_2_001", - "448": "d_pit06wave_01_001", - "449": "d_pit06wave_02_001", - "450": "d_pillar_01_001", - "451": "d_pillar_02_001", - "452": "d_pillar_03_001", - "453": "d_link_c_01_001", - "454": "d_link_c_02_001", - "455": "d_link_c_03_001", - "456": "d_link_c_04_001", - "457": "d_link_c_05_001", - "458": "colorSpike_04_001", - "459": "invis_spike_04_001", - "460": "d_arrow_02_001", - "461": "d_thorn_01_001", - "462": "d_thorn_02_001", - "463": "d_thorn_03_001", - "464": "d_thorn_04_001", - "465": "d_thorn_05_001", - "466": "d_thorn_06_001", - "467": "blockOutline_01_001", - "468": "blockOutline_02_001", - "469": "blockOutline_03_001", - "470": "blockOutline_04_001", - "471": "blockOutline_05_001", - "472": "blockOutline_06_001", - "473": "blockOutline_07_001", - "474": "blockOutline_08_001", - "475": "blockOutline_09_001", - "476": "block001_01_001", - "477": "block001_02_001", - "478": "block001_03_001", - "479": "block001_04_001", - "480": "block001_05_001", - "481": "block001_06_001", - "482": "block001_07_001", - "483": "blockOutline_14_001", - "484": "blockOutline_15_001", - "485": "block002_01_001", - "486": "block002_02_001", - "487": "block002_03_001", - "488": "block002_04_001", - "489": "block002_05_001", - "490": "block002_06_001", - "491": "block002_07_001", - "492": "blockOutline_14_001", - "493": "blockOutline_15_001", - "494": "d_arrow_03_001", - "495": "d_largeSquare_01_001", - "496": "d_largeSquare_02_001", - "497": "d_circle_02_001", - "498": "d_03_chain_01_001", - "499": "d_03_chain_02_001", - "500": "d_swirve_03_001", - "501": "d_swirve_04_001", - "502": "square_09_001", - "503": "d_gradient_01_001", - "504": "d_gradient_02_001", - "505": "d_gradient_03_001", - "506": "persp_outline_01_001", - "507": "persp_outline_02_001", - "508": "persp_outline_03_001", - "509": "persp_outline_04_001", - "510": "persp_outline_05_001", - "511": "persp_outline_06_001", - "512": "persp_outline_07_001", - "513": "persp_outline_08_001", - "514": "persp_outline_09_001", - "515": "persp_outline_01_001", - "516": "persp_outline_02_001", - "517": "persp_outline_03_001", - "518": "persp_outline_04_001", - "519": "persp_outline_05_001", - "520": "persp_outline_06_001", - "521": "persp_outline_07_001", - "522": "persp_outline_08_001", - "523": "persp_outline_09_001", - "524": "persp_outline_01_001", - "525": "persp_outline_02_001", - "526": "persp_outline_03_001", - "527": "persp_outline_04_001", - "528": "persp_outline_05_001", - "529": "persp_outline_06_001", - "530": "persp_outline_07_001", - "531": "persp_outline_08_001", - "532": "persp_outline_09_001", - "533": "persp_outline_01_001", - "534": "persp_outline_02_001", - "535": "persp_outline_03_001", - "536": "persp_outline_04_001", - "537": "persp_outline_05_001", - "538": "persp_outline_06_001", - "539": "persp_outline_07_001", - "540": "persp_outline_08_001", - "541": "persp_outline_09_001", - "542": "persp_outline_01_001", - "543": "persp_outline_02_001", - "544": "persp_outline_03_001", - "545": "persp_outline_04_001", - "546": "persp_outline_05_001", - "547": "persp_outline_06_001", - "548": "persp_outline_07_001", - "549": "persp_outline_08_001", - "550": "persp_outline_09_001", - "551": "persp_outline_01_001", - "552": "persp_outline_02_001", - "553": "persp_outline_03_001", - "554": "persp_outline_04_001", - "555": "persp_outline_05_001", - "556": "persp_outline_06_001", - "557": "persp_outline_07_001", - "558": "persp_outline_08_001", - "559": "persp_outline_09_001", - "560": "persp_outline_01_001", - "561": "persp_outline_02_001", - "562": "persp_outline_03_001", - "563": "persp_outline_04_001", - "564": "persp_outline_05_001", - "565": "persp_outline_06_001", - "566": "persp_outline_07_001", - "567": "persp_outline_08_001", - "568": "persp_outline_09_001", - "569": "persp_outline_01_001", - "570": "persp_outline_02_001", - "571": "persp_outline_03_001", - "572": "persp_outline_04_001", - "573": "persp_outline_05_001", - "574": "persp_outline_06_001", - "575": "persp_outline_07_001", - "576": "persp_outline_08_001", - "577": "persp_outline_09_001", - "578": "persp_outline_01_001", - "579": "persp_outline_02_001", - "580": "persp_outline_03_001", - "581": "persp_outline_04_001", - "582": "persp_outline_05_001", - "583": "persp_outline_06_001", - "584": "persp_outline_07_001", - "585": "persp_outline_08_001", - "586": "persp_outline_09_001", - "587": "persp_outline_01_001", - "588": "persp_outline_02_001", - "589": "persp_outline_03_001", - "590": "persp_outline_04_001", - "591": "persp_outline_05_001", - "592": "persp_outline_06_001", - "593": "persp_outline_07_001", - "594": "persp_outline_08_001", - "595": "persp_outline_09_001", - "596": "persp_outline_01_001", - "597": "persp_outline_02_001", - "598": "persp_outline_03_001", - "599": "persp_outline_04_001", - "600": "persp_outline_05_001", - "601": "persp_outline_06_001", - "602": "persp_outline_07_001", - "603": "persp_outline_08_001", - "604": "persp_outline_09_001", - "605": "persp_outline_01_001", - "606": "persp_outline_02_001", - "607": "persp_outline_03_001", - "608": "persp_outline_04_001", - "609": "persp_outline_05_001", - "610": "persp_outline_06_001", - "611": "persp_outline_07_001", - "612": "persp_outline_08_001", - "613": "persp_outline_09_001", - "614": "persp_outline_01_001", - "615": "persp_outline_02_001", - "616": "persp_outline_03_001", - "617": "persp_outline_04_001", - "618": "persp_outline_05_001", - "619": "persp_outline_06_001", - "620": "persp_outline_07_001", - "621": "persp_outline_08_001", - "622": "persp_outline_09_001", - "623": "persp_outline_01_001", - "624": "persp_outline_02_001", - "625": "persp_outline_03_001", - "626": "persp_outline_04_001", - "627": "persp_outline_05_001", - "628": "persp_outline_06_001", - "629": "persp_outline_07_001", - "630": "persp_outline_08_001", - "631": "persp_outline_09_001", - "632": "persp_outline_01_001", - "633": "persp_outline_02_001", - "634": "persp_outline_03_001", - "635": "persp_outline_04_001", - "636": "persp_outline_05_001", - "637": "persp_outline_06_001", - "638": "persp_outline_07_001", - "639": "persp_outline_08_001", - "640": "persp_outline_09_001", - "641": "block003_part03_001", - "642": "block003_part04_001", - "643": "block003_part06_001", - "644": "block003_part05_001", - "645": "block003_part01_001", - "646": "block003_part01_001", - "647": "block003_part02_001", - "648": "block003_part01_001", - "649": "block003_part01_001", - "650": "block003_part05_001", - "651": "blockOutline_14_001", - "652": "blockOutline_15_001", - "653": "d_block04_piece01_001", - "654": "d_block04_piece02_001", - "655": "d_block04_piece03_001", - "656": "d_block04_piece04_001", - "657": "d_block04_piece05_001", - "658": "d_block04_piece06_001", - "659": "d_block04_piece07_001", - "660": "portal_13_front_001", - "661": "blockOutline_10_001", - "662": "blockOutline_11_001", - "663": "blockOutline_12_001", - "664": "blockOutline_13_001", - "665": "blockOutline_14_001", - "666": "blockOutline_15_001", - "667": "pit_07_001", - "668": "d_pixelArt01_001_001", - "669": "d_pixelArt01_002_001", - "670": "d_pixelArt01_003_001", - "671": "d_pixelArt01_004_001", - "672": "d_pixelArt01_005_001", - "673": "invis_triangle_02_001", - "674": "invis_triangle_04_001", - "675": "blackCogwheel_01_001", - "676": "blackCogwheel_02_001", - "677": "blackCogwheel_03_001", - "678": "lightBlade_01_001", - "679": "lightBlade_02_001", - "680": "lightBlade_03_001", - "681": "triangle_a_02_001", - "682": "triangle_a_04_001", - "683": "triangle_c_02_001", - "684": "triangle_c_04_001", - "685": "triangle_d_02_001", - "686": "triangle_d_04_001", - "687": "lighttriangle_01_02_color_001", - "688": "lighttriangle_01_04_color_001", - "689": "triangle_f_02_001", - "690": "triangle_f_04_001", - "691": "triangle_g_02_001", - "692": "triangle_g_04_001", - "693": "lighttriangle_01_02_color_001", - "694": "lighttriangle_01_04_color_001", - "695": "lighttriangle_02_02_color_001", - "696": "lighttriangle_02_04_color_001", - "697": "lighttriangle_03_02_color_001", - "698": "lighttriangle_03_04_color_001", - "699": "lighttriangle_04_02_color_001", - "700": "lighttriangle_04_04_color_001", - "701": "lighttriangle_05_02_color_001", - "702": "lighttriangle_05_04_color_001", - "703": "block001_slope_01_001", - "704": "block001_slope_02_001", - "705": "block002_slope_01_001", - "706": "block002_slope_02_001", - "707": "block003_slope_01_001", - "708": "block003_slope_02_001", - "709": "blockOutline_14_001", - "710": "blockOutline_15_001", - "711": "blockOutline_14_001", - "712": "blockOutline_15_001", - "713": "block004_slope_01_001", - "714": "block004_slope_02_001", - "715": "block004_slope_01b_001", - "716": "block004_slope_02b_001", - "719": "pit_07_shine_001", - "720": "pit_07_2_001", - "721": "pit_07_2_shine_001", - "722": "d_block04_piece08_001", - "723": "d_block04_piece09_001", - "724": "d_block04_piece10_001", - "725": "d_link_b_01_color_001", - "726": "blockOutline_14_001", - "727": "blockOutline_15_001", - "728": "blockOutline_14_001", - "729": "blockOutline_15_001", - "730": "block004_slope_01c_001", - "731": "block004_slope_02c_001", - "732": "block004_slope_01d_001", - "733": "block004_slope_02d_001", - "734": "d_block04_piece11_001", - "735": "d_block04_piece12_001", - "736": "d_block04_piece13_001", - "737": "square_g_12_001", - "738": "d_pixelArt01_006_001", - "739": "block003_part04_001", - "740": "blade_01_001", - "741": "blade_02_001", - "742": "blade_03_001", - "744": "edit_eTint3DLBtn_001", - "745": "portal_14_front_001", - "747": "portal_15_front_001", - "749": "portal_16_front_001", - "752": "block005_02_001", - "753": "block005_03_001", - "754": "block005_04_001", - "755": "block005_05_001", - "756": "block005_06_001", - "757": "block005_07_001", - "758": "block005_08_001", - "759": "block005_09_001", - "762": "block005_slope_01_001", - "763": "block005_slope_02_001", - "764": "block005_slope_square_01_001", - "765": "block005_slope_square_02_001", - "766": "block005_slope_square_03_001", - "767": "d_spikeWave_03_001", - "768": "pit_05_03_001", - "769": "plank005_01_001", - "770": "plank005_02_001", - "771": "plank005_slope_01_001", - "772": "plank005_slope_02_001", - "773": "plank005_slope_square_01_001", - "774": "plank005_slope_square_02_001", - "775": "plank005_slope_square_03_001", - "807": "block007_01_001", - "808": "block007_01_001", - "809": "block007_02_001", - "810": "block007_02_001", - "811": "block007_03_001", - "812": "block007_03_001", - "813": "block007_04_001", - "814": "block007_04_001", - "815": "block007_05_001", - "816": "block007_05_001", - "817": "block007_06_001", - "818": "block007_06_001", - "819": "block007_07_001", - "820": "block007_07_001", - "821": "block007_08_001", - "822": "block007_08_001", - "823": "block007_09_001", - "824": "block007_09_001", - "825": "block007_09_001", - "826": "block007_slope_01_001", - "827": "block007_slope_01_001", - "828": "block007_slope_02_001", - "829": "block007_slope_02_001", - "830": "block007_slope_square_01_001", - "831": "block007_slope_square_01_001", - "832": "block007_slope_square_02_001", - "833": "block007_slope_square_02_001", - "841": "block007b_01_001", - "842": "block007b_05_001", - "843": "block007b_03_001", - "844": "block007b_03_001", - "845": "block007b_05_001", - "846": "block007b_06_001", - "847": "block007b_07_001", - "848": "block007b_08_001", - "850": "block008_02_001", - "853": "block008_03_001", - "854": "block008_04_001", - "855": "block008_05_001", - "856": "block008_06_001", - "857": "block008_07_001", - "859": "block008_08_001", - "861": "block008_09_001", - "862": "block008_10_001", - "863": "block008_11_001", - "867": "block009_01_001", - "868": "block009_02_001", - "869": "block009_03_001", - "870": "block009_04_001", - "871": "block009_05_001", - "872": "block009_06_001", - "873": "block009_part_01_001", - "874": "block009_part_02_001", - "877": "block009_slope_01_001", - "878": "block009_slope_02_001", - "880": "block009b_01_001", - "881": "block009b_02_001", - "882": "block009b_03_001", - "883": "block009b_04_001", - "884": "block009b_05_001", - "885": "block009b_06_001", - "886": "blockOutline_14_001", - "887": "blockOutline_15_001", - "888": "block009b_slope_01_001", - "889": "block009b_slope_02_001", - "890": "block009c_01_001", - "891": "block009c_02_001", - "893": "block009c_04_001", - "894": "block009c_05_001", - "895": "block009c_slope_01_001", - "896": "block009c_slope_02_001", - "899": "edit_eTintCol01Btn_001", - "900": "edit_eTintG2Btn_001", - "901": "edit_eMoveComBtn_001", - "902": "persp_outline_08_001", - "903": "block005_10_001", - "904": "block005_11_001", - "905": "block005_12_001", - "906": "d_grass_05_001", - "907": "d_grassArt_01_001", - "908": "d_grassArt_02_001", - "909": "d_grassArt_03_001", - "910": "d_grassArt_04_001", - "911": "block005_13_001", - "914": "edit_eStartPosBtn_001", - "915": "edit_eTintLBtn_001", - "916": "d_whiteBlock_01_001", - "917": "d_whiteBlock_02_001", - "918": "GJBeast01_01_001", - "919": "dA_blackSludge_01_001", - "920": "Fire_03_looped_001", - "921": "Fire_04_looped_004", - "923": "Fire_01_looped_001", - "924": "Fire_02_looped_001", - "925": "d_rainbow_01_001", - "926": "d_rainbow_02_001", - "927": "block010_01_001", - "928": "block010_02_001", - "929": "block010_03_001", - "930": "block010_04_001", - "931": "block010_piece_01_001", - "932": "block010_06_001", - "933": "block010_07_001", - "934": "block010_08_001", - "935": "block010_piece_01_001", - "936": "d_artCloud_01_001", - "937": "d_artCloud_02_001", - "938": "d_artCloud_03_001", - "939": "d_flower01_01_001", - "940": "d_grassDetail_01_001", - "941": "d_grassDetail_02_001", - "942": "d_grassDetail_03_001", - "943": "persp_outline_01_001", - "944": "persp_outline_02_001", - "945": "persp_outline_03_001", - "946": "persp_outline_04_001", - "947": "persp_outline_05_001", - "948": "persp_outline_06_001", - "949": "persp_outline_07_001", - "950": "persp_outline_08_001", - "951": "persp_outline_09_001", - "952": "block005b_02_001", - "953": "block005b_03_001", - "954": "block005b_04_001", - "955": "block005b_05_001", - "956": "block005b_06_001", - "957": "block005b_07_001", - "958": "block005b_08_001", - "959": "block005b_09_001", - "960": "block005b_slope_01_001", - "961": "block005b_slope_02_001", - "964": "block005b_slope_square_01_001", - "965": "block005b_slope_square_02_001", - "966": "block005b_slope_square_03_001", - "967": "plank005b_01_001", - "968": "plank005b_02_001", - "969": "plank005b_slope_01_001", - "970": "plank005b_slope_02_001", - "971": "plank005b_slope_square_01_001", - "972": "plank005b_slope_square_02_001", - "973": "plank005b_slope_square_03_001", - "974": "block005b_10_001", - "975": "block005b_11_001", - "976": "block005b_12_001", - "977": "block005b_13_001", - "980": "persp_outline_01_001", - "981": "persp_outline_02_001", - "982": "persp_outline_03_001", - "983": "persp_outline_04_001", - "984": "persp_outline_05_001", - "985": "persp_outline_06_001", - "986": "persp_outline_07_001", - "987": "persp_outline_08_001", - "988": "persp_outline_09_001", - "989": "pit_07_3_001", - "990": "pit_07_3_shine_001", - "991": "pit_07_4_001", - "992": "pit_07_4_shine_001", - "997": "d_ringSeg_01_001", - "998": "d_ringSeg_02_001", - "999": "d_ringSeg_03_001", - "1000": "d_ringSeg_04_001", - "1001": "d_link_d_01_001", - "1002": "d_link_d_02_001", - "1003": "d_link_d_03_001", - "1004": "d_link_d_04_001", - "1005": "d_link_d_05_001", - "1006": "edit_ePulseBtn_001", - "1007": "edit_eAlphaBtn_001", - "1009": "d_gradient_b_02_001", - "1010": "d_gradient_b_03_001", - "1011": "d_gradient_c_01_001", - "1012": "d_gradient_c_02_001", - "1013": "d_gradient_c_03_001", - "1014": "block010_slope_01_001", - "1015": "block010_slope_02_001", - "1016": "block010_slope_square_01_001", - "1017": "block010_slope_square_02_001", - "1018": "block010_slope_square_03_001", - "1019": "d_flashRing_01_001", - "1020": "d_flashRing_02_001", - "1021": "d_flashRing_03_001", - "1022": "gravJumpRing_01_001", - "1024": "persp_outline_01_001", - "1025": "persp_outline_02_001", - "1026": "persp_outline_03_001", - "1027": "persp_outline_04_001", - "1028": "persp_outline_05_001", - "1029": "persp_outline_06_001", - "1030": "persp_outline_07_001", - "1031": "persp_outline_08_001", - "1032": "persp_outline_09_001", - "1033": "block005_slope_03_001", - "1034": "block005_slope_04_001", - "1035": "block005_slope_square_04_001", - "1036": "block005_slope_square_05_001", - "1037": "block005b_slope_03_001", - "1038": "block005b_slope_04_001", - "1039": "block005b_slope_square_04_001", - "1040": "block005b_slope_square_05_001", - "1041": "block005_slope_05_001", - "1042": "block005_slope_06_001", - "1043": "block005b_slope_05_001", - "1044": "block005b_slope_06_001", - "1045": "block005_16_001", - "1046": "block005_17_001", - "1047": "block005b_16_001", - "1048": "block005b_17_001", - "1049": "edit_eToggleBtn_001", - "1050": "d_animWave_01_base_001", - "1051": "d_animWave_02_base_001", - "1052": "d_animWave_03_base_001", - "1053": "d_animLoading_01_001", - "1054": "d_animLoading_02_001", - "1055": "d_pickupCircle_01_001", - "1056": "d_pickupCircle_01_001", - "1057": "d_pickupCircle_01_001", - "1058": "d_spiral_01_001", - "1059": "d_spiral_02_001", - "1060": "d_spiral_03_001", - "1061": "d_spiral_04_001", - "1062": "block009b_07_001", - "1063": "persp_outline_01_001", - "1064": "persp_outline_02_001", - "1065": "persp_outline_03_001", - "1066": "persp_outline_04_001", - "1067": "persp_outline_05_001", - "1068": "persp_outline_06_001", - "1069": "persp_outline_07_001", - "1070": "persp_outline_08_001", - "1071": "persp_outline_09_001", - "1075": "block003_part03_001", - "1076": "block003_part01_001", - "1077": "block003_part01_001", - "1078": "block007_01_small_001", - "1079": "plank007_01_001", - "1080": "plank007_02_001", - "1081": "plank007_03_001", - "1082": "block007_01_001", - "1083": "block007_02_001", - "1084": "block007_03_001", - "1085": "block007_04_001", - "1086": "block007_05_001", - "1087": "block007_06_001", - "1088": "block007_07_001", - "1089": "block007_08_001", - "1090": "block007_09_001", - "1091": "block007_slope_01_001", - "1092": "block007_slope_02_001", - "1093": "block007_slope_square_01_001", - "1094": "block007_slope_square_02_001", - "1095": "block007_01_small_001", - "1096": "plank007_01_001", - "1097": "plank007_02_001", - "1098": "plank007_03_001", - "1099": "block007_bgcolor_001_001", - "1100": "block007_bgcolor_002_001", - "1101": "block007_bgcolor_003_001", - "1102": "block007_bgcolor_004_001", - "1103": "block007_bgcolor_005_001", - "1104": "block007_bgcolor_006_001", - "1105": "block007_bgcolor_007_001", - "1106": "block007_bgcolor_008_001", - "1107": "block007_bgcolor_009_001", - "1108": "block007_slope_02_001", - "1109": "block007_bgcolor_001_001", - "1110": "block007_bgcolor_012_001", - "1111": "block007_bgcolor_013_001", - "1112": "block007b_bgcolor_01_001", - "1113": "block007b_bgcolor_02_001", - "1114": "block007b_bgcolor_03_001", - "1115": "block007b_bgcolor_05_001", - "1116": "block007b_bgcolor_06_001", - "1117": "block007b_bgcolor_07_001", - "1118": "block007b_bgcolor_08_001", - "1120": "block008_topcolor_01_001", - "1122": "block008_topcolor_29_001", - "1123": "block008_topcolor_15_001", - "1124": "block008_topcolor_16_001", - "1125": "block008_topcolor_18_001", - "1126": "block008_topcolor_24b_001", - "1127": "block008_topcolor_24b_001", - "1132": "block008_topcolor_22_001", - "1133": "block008_topcolor_23_001", - "1134": "block008_topcolor_25_001", - "1135": "block008_topcolor_26_001", - "1136": "block008_topcolor_27_001", - "1137": "block008_topcolor_28_001", - "1138": "block008_topcolor_12_001", - "1139": "block008_topcolor_13_001", - "1140": "square_g_03_001", - "1141": "square_g_04_001", - "1142": "square_g_05_001", - "1143": "square_g_06_001", - "1144": "square_g_07_001", - "1145": "square_g_08_001", - "1146": "square_g_09_001", - "1147": "square_g_10_001", - "1148": "square_g_11_001", - "1149": "square_g_12_001", - "1150": "square_g_13_001", - "1151": "square_g_14_001", - "1152": "square_g_15_001", - "1153": "square_g_16_001", - "1154": "smallOutline_01_001", - "1155": "smallOutline_02_001", - "1156": "smallOutline_03_001", - "1157": "smallOutline_04_001", - "1158": "smallOutline_05_001", - "1159": "block009b_08_001", - "1160": "block009b_09_001", - "1161": "block009b_10_001", - "1162": "block006_01_001", - "1163": "block006_02_001", - "1164": "block006_03_001", - "1165": "block006_04_001", - "1166": "block006_05_001", - "1167": "block006_06_001", - "1168": "block006_07_001", - "1169": "block006_08_001", - "1170": "block006_09_001", - "1171": "block006_10_001", - "1172": "block006_11_001", - "1173": "block006_12_001", - "1174": "block006_13_001", - "1175": "block006_14_001", - "1176": "block006_15_001", - "1177": "block006_16_001", - "1178": "block006_17_001", - "1179": "block006_18_001", - "1180": "block006_19_001", - "1181": "block006_20_001", - "1182": "block006_21_001", - "1183": "block006_22_001", - "1184": "block006_23_001", - "1185": "block006_24_001", - "1186": "block006_25_001", - "1187": "block006_slope_01_001", - "1188": "block006_slope_02_001", - "1189": "block006_slope_square_01_001", - "1190": "block006_slope_square_02_001", - "1191": "block006_color_01_001", - "1192": "block006_color_02_001", - "1193": "block006_color_03_001", - "1194": "block006_color_04_001", - "1195": "block006_color_05_001", - "1196": "block006_color_06_001", - "1197": "block006_color_01_001", - "1198": "block006_slope_01_color_001", - "1199": "block006_slope_02_color_001", - "1200": "block006_slope_square_01_color_001", - "1201": "block006_slope_square_02_color_001", - "1202": "blockOutlineThick_01_001", - "1203": "blockOutlineThick_02_001", - "1204": "blockOutlineThick_03_001", - "1205": "blockOutlineThick_04_001", - "1206": "blockOutlineThick_05_001", - "1207": "blockOutlineThick_06_001", - "1208": "blockOutlineThick_07_001", - "1209": "blockOutlineThick_08_001", - "1210": "blockOutlineThick_03_001", - "1220": "blockOutlineThickb_01_001", - "1221": "blockOutlineThickb_02_001", - "1222": "blockOutlineThickb_03_001", - "1223": "blockOutlineThickb_04_001", - "1224": "blockOutlineThickb_05_001", - "1225": "blockOutlineThickb_06_001", - "1226": "blockOutlineThickb_08_001", - "1227": "blockOutlineThickb_03_001", - "1228": "d_waveBG_001", - "1229": "block010_piece_01_001", - "1230": "block010_piece_01_001", - "1231": "block010_piece_01_001", - "1232": "block010_piece_02_001", - "1233": "block010_piece_02_001", - "1234": "block010_piece_02_001", - "1235": "block010_piece_02_001", - "1236": "block010_piece_02_001", - "1237": "block010_piece_02_001", - "1238": "block010_piece_01_001", - "1239": "block010_02_001", - "1240": "block010_06_001", - "1241": "block008_topcolor_02_001", - "1242": "block008_topcolor_06_001", - "1243": "block008_topcolor_07_001", - "1244": "block008_topcolor_08_001", - "1245": "block008_topcolor_10_001", - "1246": "block008_topcolor_11_001", - "1247": "block009c_base_001", - "1248": "block009c_base_001", - "1249": "block009c_base_001", - "1250": "block009c_base_001", - "1251": "block009c_10_001", - "1252": "block009c_11_001", - "1253": "block009c_base_001", - "1254": "block009c_base_001", - "1255": "block009c_base_001", - "1256": "block009c_slope_03_001", - "1257": "block009c_slope_04_001", - "1258": "block009c_slope_03_001", - "1259": "block009c_slope_04_001", - "1260": "blockOutline_02_001", - "1261": "blockOutlineOuter1_01_001", - "1262": "blockOutlineThick_01_001", - "1263": "blockOutlineOuter2_01_001", - "1264": "blockOutlineThickb_01_001", - "1265": "blockOutlineOuter3_01_001", - "1266": "block009_07_001", - "1267": "block009_08_001", - "1268": "edit_eSpawnBtn_001", - "1269": "d_gradient_c_04_001", - "1270": "d_gradient_c_05_001", - "1271": "d_gradient_b_04_001", - "1272": "d_gradient_b_05_001", - "1273": "d_gradient_04_001", - "1274": "d_gradient_05_001", - "1275": "d_key01_001", - "1276": "d_keyHole01_001", - "1277": "block009c_base_001", - "1278": "block009c_base_001", - "1279": "block009c_base_001", - "1280": "block009c_base_001", - "1281": "block009c_base_001", - "1282": "block009c_base_001", - "1283": "block009c_base_001", - "1284": "block009c_base_001", - "1285": "block009c_base_001", - "1286": "block009c_base_001", - "1287": "block009c_base_001", - "1288": "block009c_base_001", - "1289": "block009c_base_001", - "1290": "block009c_base_001", - "1291": "d_gradient_06_001", - "1292": "d_gradient_b_06_001", - "1293": "d_gradient_c_06_001", - "1294": "block005_02b_001", - "1295": "block005_04b_001", - "1296": "block005b_02b_001", - "1297": "block005b_04b_001", - "1298": "block003_part01_001", - "1299": "block005c_02_001", - "1300": "block005c_03_001", - "1301": "block005c_04_001", - "1302": "block005c_10_001", - "1303": "block005c_11_001", - "1304": "block005c_06_001", - "1305": "block005c_slope_01_001", - "1306": "block005c_slope_02_001", - "1307": "block005c_slope_square_01_001", - "1308": "block005c_slope_square_02_001", - "1309": "block005c_slope_square_03_001", - "1310": "block005c_02_001", - "1311": "block005c_03_001", - "1312": "block005c_04_001", - "1313": "block005c_10_001", - "1314": "block005c_11_001", - "1315": "block005c_06_001", - "1316": "block005c_slope_01_001", - "1317": "block005c_slope_02_001", - "1318": "block005c_slope_square_01_001", - "1319": "block005c_slope_square_02_001", - "1320": "block005c_slope_square_03_001", - "1322": "block006_26_001", - "1325": "block006_slope_square_03_001", - "1326": "block006_slope_square_04_001", - "1327": "GJBeast02_01_001", - "1328": "GJBeast03_01_001", - "1329": "secretCoinUI2_001", - "1330": "dropRing_01_001", - "1331": "portal_17_front_001", - "1332": "bump_02_001", - "1333": "ring_02_001", - "1334": "boost_05_001", - "1338": "blockOutline_14_001", - "1339": "blockOutline_15_001", - "1340": "invisibleOutline_01_001", - "1341": "blockOutline_14_001", - "1342": "blockOutline_15_001", - "1343": "invisibleOutline_b_01_001", - "1344": "blockOutline_14_001", - "1345": "blockOutline_15_001", - "1346": "edit_eRotateComBtn_001", - "1347": "edit_eFollowComBtn_001", - "1348": "block011_01_001", - "1349": "block011_02_001", - "1350": "block011_03_001", - "1351": "block011_04_001", - "1352": "block011b_01_001", - "1353": "block011b_02_001", - "1354": "block011b_03_001", - "1355": "block011b_04_001", - "1356": "block011_edge_02_001", - "1357": "block011_edge_03_001", - "1358": "block011_edge_04_001", - "1359": "block011_edge_05_001", - "1360": "block011_edge_06_001", - "1361": "block011_edge_07_001", - "1362": "block011_edge_08_001", - "1363": "block011_edge_09_001", - "1364": "block011_edge_10_001", - "1365": "block011_edge_11_001", - "1366": "block011_edge_12_001", - "1367": "block011_light_01_001", - "1368": "block011_light_02_001", - "1369": "block011_light_03_001", - "1370": "block011_light_04_001", - "1371": "block011_light_05_001", - "1372": "block011_light_06_001", - "1373": "block011_light_07_001", - "1374": "block011_light_08_001", - "1375": "block011_light_09_001", - "1376": "block011_light_10_001", - "1377": "block011_light_11_001", - "1378": "block011_light_12_001", - "1379": "block011_light_13_001", - "1380": "block011_light_14_001", - "1381": "block011_light_15_001", - "1382": "block011_light_16_001", - "1383": "block011_light_17_001", - "1384": "block011_light_18_001", - "1385": "block011_light_19_001", - "1386": "block011_light_20_001", - "1387": "block011b_piece_01_001", - "1388": "block011b_piece_02_001", - "1389": "block011b_piece_03_001", - "1390": "block011b_piece_04_001", - "1391": "block011b_piece_05_001", - "1392": "block011b_piece_06_001", - "1393": "block011b_piece_07_001", - "1394": "block011b_piece_08_001", - "1395": "block011_edge_01_001", - "1431": "block012_01_001", - "1432": "block012_02_001", - "1433": "block012_03_001", - "1434": "block012_04_001", - "1435": "block012_05_001", - "1436": "block012_06_001", - "1437": "block012_07_001", - "1438": "block012_08_001", - "1439": "block012_09_001", - "1440": "block012_10_001", - "1441": "block012_11_001", - "1442": "block012b_01_001", - "1443": "block012b_02_001", - "1444": "block012b_03_001", - "1445": "block012b_04_001", - "1446": "block012b_05_001", - "1447": "block012b_06_001", - "1448": "block012b_07_001", - "1449": "block012b_08_001", - "1450": "block012b_09_001", - "1451": "block012b_10_001", - "1452": "block012b_11_001", - "1453": "block012_light_01_001", - "1454": "block012_light_02_001", - "1455": "block012_light_03_001", - "1456": "block012_light_04_001", - "1457": "block012_light_05_001", - "1458": "block012_light_06_001", - "1459": "block012_light_07_001", - "1460": "block012_light_08_001", - "1461": "block013_01c_001", - "1462": "block013_02c_001", - "1463": "block013_03c_001", - "1464": "block013_04c_001", - "1471": "block013_detail_01_001", - "1472": "block013_detail_02_001", - "1473": "block013_detail_03_001", - "1496": "block013_detail_04_001", - "1507": "block013_detail_05_001", - "1510": "block012_12_001", - "1511": "block012_13_001", - "1512": "block012_14_001", - "1513": "block012b_12_001", - "1514": "block012b_13_001", - "1515": "block012b_14_001", - "1516": "waterfallAnim_001", - "1517": "waterfallAnim_007", - "1518": "waterSplash_001", - "1519": "starAnim_004", - "1520": "edit_eShakeBtn_001", - "1521": "d_rotatingLine_01_001", - "1522": "d_rotatingLine_02_001", - "1523": "d_rotatingLine_03_001", - "1524": "d_rotatingLine_04_001", - "1525": "d_rotatingSquare_01_001", - "1526": "d_rotatingSquare_02_001", - "1527": "d_rotatingSquare_03_001", - "1528": "d_rotatingSquare_04_001", - "1529": "persp_outline_01_001", - "1530": "persp_block013_09_001", - "1531": "persp_outline_03_001", - "1532": "persp_outline_04_001", - "1533": "persp_outline_05_001", - "1534": "persp_outline_06_001", - "1535": "persp_outline_07_001", - "1536": "persp_outline_08_001", - "1537": "persp_outline_09_001", - "1538": "persp_outline_01_001", - "1539": "persp_outline_02_001", - "1540": "persp_outline_06_001", - "1552": "persp_outline_01_001", - "1553": "persp_outline_02_001", - "1554": "persp_outline_03_001", - "1555": "persp_outline_04_001", - "1556": "persp_outline_05_001", - "1557": "persp_outline_06_001", - "1558": "persp_outline_07_001", - "1559": "persp_outline_08_001", - "1560": "persp_outline_09_001", - "1561": "persp_outline_01_001", - "1562": "persp_outline_02_001", - "1563": "persp_outline_03_001", - "1564": "persp_outline_04_001", - "1565": "persp_outline_05_001", - "1566": "persp_outline_06_001", - "1567": "persp_outline_07_001", - "1568": "persp_outline_08_001", - "1569": "persp_outline_09_001", - "1582": "fireball_01_001", - "1583": "fireball_02_001", - "1584": "GJBeast04_01_001", - "1585": "edit_eAnimateBtn_001", - "1586": "edit_eParticleBtn_001", - "1587": "d_heart01_001", - "1588": "d_heart01_match_001", - "1589": "d_potion01_001", - "1590": "d_potion01_match_001", - "1591": "lava_top_001", - "1592": "d_animSquare_01_001", - "1593": "lava_top_001", - "1594": "ring_custom_01_001", - "1595": "edit_eTouchBtn_001", - "1596": "d_skull_01_001", - "1597": "d_skull_02_001", - "1598": "d_skull01_001", - "1599": "d_skull01_match_001", - "1600": "d_sign_01_001", - "1601": "d_sign_pole_001", - "1602": "d_sign_img_01_001", - "1603": "d_sign_img_02_001", - "1604": "d_sign_img_03_001", - "1605": "d_sign_img_04_001", - "1606": "d_sign_img_05_001", - "1607": "d_sign_img_06_001", - "1608": "d_sign_paint_01_001", - "1609": "d_sign_paint_02_001", - "1610": "d_sign_paint_03_001", - "1611": "edit_eCountBtn_001", - "1612": "edit_ePHideBtn_001", - "1613": "edit_ePShowBtn_001", - "1614": "smallCoin_01_001", - "1615": "edit_eCounterBtn_001", - "1616": "edit_eStopMoverBtn_001", - "1617": "block013_detail_06_001", - "1618": "explosion_01_001", - "1619": "spinBlade01_001", - "1620": "spinBlade02_001", - "1621": "block013_edge_01_001", - "1622": "block013_edge_02_001", - "1623": "block013_edge_03_001", - "1624": "block013_edge_04_001", - "1625": "block013_edge_05_001", - "1626": "block013_edge_06_001", - "1627": "block013_edge_07_001", - "1628": "block013_edge_08_001", - "1629": "block013_edge_09_001", - "1630": "block013_edge_10_001", - "1631": "block013_edge_11_001", - "1632": "block013_edge_12_001", - "1633": "block013_edge_13_001", - "1634": "block013_edge_14_001", - "1635": "block013_edge_15_001", - "1636": "block013_edge_16_001", - "1637": "block013_edge_c_01_001", - "1638": "block013_edge_c_02_001", - "1639": "block013_edge_c_03_001", - "1640": "block013_edge_c_04_001", - "1641": "block013_edge_c_05_001", - "1642": "block013_edge_c_06_001", - "1643": "block013_edge_c_07_001", - "1644": "block013_edge_c_08_001", - "1645": "block013_edge_c_09_001", - "1646": "block013_edge_c_10_001", - "1647": "block013_edge_c_11_001", - "1648": "block013_edge_c_12_001", - "1649": "block013_edge_c_13_001", - "1650": "block013_edge_c_14_001", - "1651": "block013_edge_c_15_001", - "1652": "block013_edge_c_16_001", - "1653": "block013_light_01_001", - "1654": "block013_light_02_001", - "1655": "block013_light_03_001", - "1656": "block013_light_04_001", - "1657": "block013_light_05_001", - "1658": "block013_light_06_001", - "1659": "block013_light_07_001", - "1660": "block013_light_08_001", - "1661": "block013_light_09_001", - "1662": "block013_light_10_001", - "1663": "block013_light_11_001", - "1664": "block013_light_12_001", - "1665": "block013_light_13_001", - "1666": "block013_light_14_001", - "1667": "block013_light_15_001", - "1668": "block013_light_16_001", - "1669": "block013_light_c_01_001", - "1670": "block013_light_c_02_001", - "1671": "block013_light_c_03_001", - "1672": "block013_light_c_04_001", - "1673": "block013_light_c_05_001", - "1674": "block013_light_c_06_001", - "1675": "block013_light_c_07_001", - "1676": "block013_light_c_08_001", - "1677": "block013_light_c_09_001", - "1678": "block013_light_c_10_001", - "1679": "block013_light_c_11_001", - "1680": "block013_light_c_12_001", - "1681": "block013_light_c_13_001", - "1682": "block013_light_c_14_001", - "1683": "block013_light_c_15_001", - "1684": "block013_light_c_16_001", - "1685": "puzzle_base_001", - "1686": "puzzle_base_001", - "1687": "puzzle_base_001", - "1688": "puzzle_base_001", - "1689": "puzzle_base_001", - "1690": "puzzle_base_001", - "1691": "puzzle_base_001", - "1692": "puzzle_base_001", - "1693": "puzzle_base_001", - "1694": "puzzle_base_001", - "1695": "puzzle_base_001", - "1696": "puzzle_base_001", - "1697": "d_zag_01_001", - "1698": "d_zag_02_001", - "1699": "d_zag_03_001", - "1700": "edit_eParticleBtn_001", - "1701": "bladeTrap01_001", - "1702": "bladeTrap02_001", - "1703": "bladeTrap03_001", - "1704": "dashRing_01_001", - "1705": "sawblade_01_001", - "1706": "sawblade_02_001", - "1707": "sawblade_03_001", - "1708": "darkblade_01_001", - "1709": "darkblade_02_001", - "1710": "darkblade_03_001", - "1711": "pit_b_01_001", - "1712": "pit_b_02_001", - "1713": "pit_b_03_001", - "1714": "pit_b_04_001", - "1715": "pit_01_001", - "1716": "pit_01_low_001", - "1717": "pit_01_slope_01_001", - "1718": "pit_01_slope_02_001", - "1719": "pit_04_001", - "1720": "pit_04_02_001", - "1721": "pit_04_03_001", - "1722": "pit_04_low_001", - "1723": "pit_04_slope_01_001", - "1724": "pit_04_slope_02_001", - "1725": "pit_05_001", - "1726": "pit_05_02_001", - "1727": "pit_05_03_001", - "1728": "pit_06_001", - "1729": "pit_06_2_001", - "1730": "pit_07_001", - "1731": "pit_07_2_001", - "1732": "pit_07_3_001", - "1733": "pit_07_4_001", - "1734": "blackCogwheel_01_001", - "1735": "blackCogwheel_02_001", - "1736": "blackCogwheel_03_001", - "1737": "d_pixelArt01_001_001", - "1738": "d_pixelArt01_002_001", - "1739": "d_pixelArt01_003_001", - "1740": "d_pixelArt01_004_001", - "1741": "d_pixelArt01_005_001", - "1742": "d_pixelArt01_006_001", - "1743": "triangle_a_02_001", - "1744": "triangle_a_04_001", - "1745": "triangle_c_02_001", - "1746": "triangle_c_04_001", - "1747": "lighttriangle_01_02_color_001", - "1748": "lighttriangle_01_04_color_001", - "1749": "triangle_f_02_001", - "1750": "triangle_f_04_001", - "1751": "dashRing_02_001", - "1752": "d_ringSpiral_01_001", - "1753": "gridLine01_001", - "1754": "gridLine02_001", - "1755": "blockOutline_01_001", - "1756": "d_link_b_06_001", - "1757": "gridLine03_001", - "1758": "blockOutline_14_001", - "1759": "blockOutline_15_001", - "1760": "blockOutline_14_001", - "1761": "blockOutline_15_001", - "1762": "blockOutline_14_001", - "1763": "blockOutline_15_001", - "1764": "d_small_ball_01_001", - "1765": "d_small_ball_02_001", - "1766": "d_small_ball_03_001", - "1767": "d_small_ball_04_001", - "1768": "d_small_ball_05_001", - "1769": "block013_01c_001", - "1770": "block013_03c_001", - "1771": "block013_02c_001", - "1772": "block013_04c_001", - "1773": "blockOutline_15_001", - "1774": "blockOutline_15_001", - "1775": "blockOutline_15_001", - "1776": "blockOutline_15_001", - "1777": "block011_01_001", - "1778": "block011_02_001", - "1779": "block011_03_001", - "1780": "block011_04_001", - "1781": "block011b_01_001", - "1782": "block011b_02_001", - "1783": "block011b_03_001", - "1784": "block011b_04_001", - "1785": "blockOutline_15_001", - "1786": "blockOutline_15_001", - "1787": "blockOutline_15_001", - "1788": "blockOutline_15_001", - "1789": "blockOutline_15_001", - "1790": "blockOutline_15_001", - "1791": "blockOutline_15_001", - "1792": "blockOutline_15_001", - "1793": "block012_03_001", - "1794": "blockOutline_15_001", - "1795": "block012_12_001", - "1796": "blockOutline_15_001", - "1797": "puzzle_base_001", - "1798": "blockOutline_15_001", - "1799": "block012b_03_001", - "1800": "blockOutline_15_001", - "1801": "block012b_12_001", - "1802": "blockOutline_15_001", - "1803": "block012_01_001", - "1804": "blockOutline_15_001", - "1805": "block012b_01_001", - "1806": "blockOutline_15_001", - "1807": "block012_13_001", - "1808": "blockOutline_15_001", - "1809": "block012b_13_001", - "1810": "blockOutline_15_001", - "1811": "edit_eInstantCountBtn_001", - "1812": "edit_eOnDeathBtn_001", - "1813": "blockOutline_01_001", - "1814": "edit_eFollowPComBtn_001", - "1815": "edit_eCollisionBtn_001", - "1816": "edit_eCollisionBlock01_001", - "1817": "edit_ePickupBtn_001", - "1818": "edit_eBGEOn_001", - "1819": "edit_eBGEOff_001", - "1820": "lightsquare_02_01_color_001", - "1821": "lightsquare_02_02_color_001", - "1823": "lightsquare_02_03_color_001", - "1824": "lightsquare_02_04_color_001", - "1825": "lightsquare_02_05_color_001", - "1826": "lightsquare_02_06_color_001", - "1827": "lightsquare_02_07_color_001", - "1828": "lightsquare_02_08_color_001", - "1829": "blockOutline_01_001", - "1830": "gridLine04_001", - "1831": "d_scaleFadeRing_01_001", - "1832": "d_scaleFadeRing_03_001", - "1833": "d_scaleFadeRing_02_001", - "1834": "d_scaleFadeRing_04_001", - "1835": "d_scaleFadeRing_01_001", - "1836": "d_scaleFadeRing_03_001", - "1837": "d_scaleFadeRing_02_001", - "1838": "d_scaleFadeRing_04_001", - "1839": "d_scaleFadeRing_01_001", - "1840": "d_scaleFadeRing_03_001", - "1841": "d_scaleFadeRing_02_001", - "1842": "d_scaleFadeRing_04_001", - "1843": "d_sign_tile_01_001", - "1844": "gjHand_01_001", - "1845": "gjHand_02_001", - "1846": "gjHand_03_001", - "1847": "gjHand_04_001", - "1848": "gjHand_05_001", - "1849": "gj_smoke01_001", - "1850": "gj_smoke02_001", - "1851": "gj_drops01_001", - "1852": "gj_drops02_005", - "1853": "gj_drops03_001", - "1854": "gj_drops04_003", - "1855": "gj_drops05_001", - "1856": "gj_bubble01_005", - "1857": "gj_lightning01_001", - "1858": "gj_drops06_001", - "1859": "blockOutline_01_001", - "1860": "gj_lightning02_004", - "1861": "blockDesign01_01_001", - "1862": "blockDesign01_02_001", - "1863": "blockDesign01_03_001", - "1864": "blockDesign01_04_001", - "1865": "blockDesign02_01_001", - "1866": "blockDesign02_02_001", - "1867": "blockDesign02_03_001", - "1868": "blockDesign02_04_001", - "1869": "blockDesign03_01_001", - "1870": "blockDesign03_02_001", - "1871": "blockDesign03_03_001", - "1872": "blockDesign03_04_001", - "1873": "blockDesign04_01_001", - "1874": "blockDesign05_01_001", - "1875": "blockDesign05_02_001", - "1876": "blockDesign05_03_001", - "1877": "blockDesign05_04_001", - "1878": "blockDesign06_01_001", - "1879": "blockDesign06_02_001", - "1880": "blockDesign06_03_001", - "1881": "blockDesign06_04_001", - "1882": "blockDesign07_01_001", - "1883": "blockDesign07_02_001", - "1884": "blockDesign07_03_001", - "1885": "blockDesign07_04_001", - "1886": "emptyFrame", - "1887": "emptyFrame", - "1888": "emptyFrame", - "1889": "fakeSpike_01_001", - "1890": "fakeSpike_02_001", - "1891": "fakeSpike_03_001", - "1892": "fakeSpike_04_001", - "1893": "square_b_01_001", - "1894": "square_b_02_001", - "1895": "square_b_03_001", - "1896": "square_b_04_001", - "1897": "square_b_05_001", - "1898": "square_b_06_001", - "1899": "blockOutline_14_001", - "1900": "blockOutline_15_001", - "1901": "triangle_b_square_01_001", - "1902": "triangle_b_square_02_001", - "1903": "plank_01_001", - "1904": "plank_01_02_001", - "1905": "plank_01_03_001", - "1906": "blockOutline_14_001", - "1907": "blockOutline_15_001", - "1908": "plank_01_square_01_001", - "1909": "plank_01_square_02_001", - "1910": "square_01_small_001", - "1911": "plank_01_small_001" + "portals": { + "12": "cube", + "13": "ship", + "47": "ball", + "111": "ufo", + "660": "wave", + "745": "robot", + "1331": "spider", + "45": "mirrorOn", + "46": "mirrorOff", + "101": "mini", + "99": "big", + "286": "dual", + "287": "single", + "200": "-1x", + "201": "1x", + "202": "2x", + "203": "3x", + "1334": "4x" + }, + + "orbs": { + "36": "yellow", + "84": "blue", + "141": "pink", + "1022": "green", + "1333": "red", + "1330": "black", + "1704": "greenDash", + "1751": "pinkDash", + "1594": "trigger" + }, + + "triggers": { + "29": "Color", + "30": "Color", + "31": "StartPos", + "32": "EnableTrail", + "33": "DisableTrail", + "34": "StartPos2", + "104": "Color", + "105": "Color", + "221": "Color", + "717": "Color", + "718": "Color", + "743": "Color", + "744": "Color", + "899": "Color", + "900": "Color", + "915": "Color", + "901": "Move", + "1006": "Pulse", + "1007": "Alpha", + "1049": "Toggle", + "1268": "Spawn", + "1346": "Rotate", + "1347": "Follow", + "1520": "Shake", + "1585": "Animate", + "1595": "Touch", + "1611": "Count", + "1612": "HidePlayer", + "1613": "ShowPlayer", + "1616": "Stop", + "1811": "InstantCount", + "1812": "OnDeath", + "1814": "FollowPlayerY", + "1815": "Collision", + "1817": "Pickup", + "1818": "BGEffectOn", + "1819": "BGEffectOff", + "22": "Transition", + "24": "Transition", + "23": "Transition", + "25": "Transition", + "26": "Transition", + "27": "Transition", + "28": "Transition", + "55": "Transition", + "56": "Transition", + "57": "Transition", + "58": "Transition", + "59": "Transition", + + "1912": "Random", + "1913": "CameraZoom", + "1914": "CameraStatic", + "1916": "CameraOffset", + "1917": "Reverse", + "1931": "LevelEnd" + }, + + "misc": { + "spikes": ["Spikes", 8, 218, 458, 39, 103, 144, 392, 205, 216, 145, 217, 459, 177, 178, 179], + "saws": ["Saws", 1705, 740, 1619, 1706, 741, 742, 1620, 184, 1707, 1734, 678, 185, 1708, 1736, 187, 679, 1709, 1710, 186, 1735, 188, 680, 183], + "invisibles": ["Fading", 146, 147, 206, 204, 673, 674, 1340, 1341, 1342, 1343, 1344, 1345, 144, 205, 145, 459, 740, 741, 742], + "pickups": ["Pickups", 1614, 1598, 1587, 1275], + "texts": ["Text", 914, 1615], + "glows": ["Glow", 1888, 1763, 1762, 1293, 1270, 1269, 1012, 1013, 1011, 1886, 1759, 1758, 1291, 1274, 1273, 504, 505, 503, 1887, 1761, 1760, 1272, 1271, 1009, 1010, 1292], + "hands": ["Hands", 1844, 1845, 1846, 1847, 1848], + "pulses": ["Pulsing", 50, 52, 51, 53, 54, 60, 148, 149, 405, 132, 460, 494, 133, 136, 150, 236, 497, 495, 496, 15, 16, 17], + "breakables": ["Breakable", 143], + "collisions": ["Collisions", 1816], + "pixels": ["Pixels", 916, 917], + "clouds": ["Clouds", 936, 937, 938, 129, 130, 131], + "arrows": ["Arrows", 1768, 1766, 1603, 1844, 132, 494, 460], + "particles": ["Particles", 1586, 1700, 1519, 1618], + "monsters": ["Monsters", 918, 1327, 1328, 1584], + "fires": ["Fire", 920, 923, 924, 921] + } } \ No newline at end of file diff --git a/misc/sprites.json b/misc/sprites.json deleted file mode 100644 index c2ef9af..0000000 --- a/misc/sprites.json +++ /dev/null @@ -1,27834 +0,0 @@ -{ - "blackCogwheel_01_001": { - "x": 3489, - "y": 1037, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 1 - }, - "blackCogwheel_01_color_001": { - "x": 3937, - "y": 384, - "width": 156, - "height": 156, - "rotation": 0, - "spritesheet": 1 - }, - "blackCogwheel_02_001": { - "x": 3709, - "y": 439, - "width": 206, - "height": 210, - "rotation": 90, - "spritesheet": 1 - }, - "blackCogwheel_02_color_001": { - "x": 2293, - "y": 475, - "width": 196, - "height": 198, - "rotation": 90, - "spritesheet": 1 - }, - "blackCogwheel_03_001": { - "x": 3937, - "y": 542, - "width": 156, - "height": 156, - "rotation": 0, - "spritesheet": 1 - }, - "blackCogwheel_03_color_001": { - "x": 3709, - "y": 1492, - "width": 144, - "height": 144, - "rotation": 0, - "spritesheet": 1 - }, - "bladeTrap01_001": { - "x": 123, - "y": 2571, - "width": 80, - "height": 112, - "rotation": 90, - "spritesheet": 1 - }, - "bladeTrap01_color_001": { - "x": 2043, - "y": 3137, - "width": 30, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "bladeTrap02_001": { - "x": 605, - "y": 2396, - "width": 58, - "height": 114, - "rotation": 90, - "spritesheet": 1 - }, - "bladeTrap02_color_001": { - "x": 2043, - "y": 3169, - "width": 30, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "bladeTrap03_001": { - "x": 431, - "y": 2175, - "width": 50, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "bladeTrap03_color_001": { - "x": 859, - "y": 3527, - "width": 32, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "blade_01_001": { - "x": 3263, - "y": 883, - "width": 170, - "height": 170, - "rotation": 0, - "spritesheet": 1 - }, - "blade_02_001": { - "x": 1, - "y": 995, - "width": 243, - "height": 242, - "rotation": 0, - "spritesheet": 1 - }, - "blade_03_001": { - "x": 792, - "y": 533, - "width": 168, - "height": 168, - "rotation": 0, - "spritesheet": 1 - }, - "blade_b_01_001": { - "x": 309, - "y": 1303, - "width": 170, - "height": 172, - "rotation": 90, - "spritesheet": 1 - }, - "blade_b_02_001": { - "x": 2293, - "y": 141, - "width": 240, - "height": 210, - "rotation": 0, - "spritesheet": 1 - }, - "blade_b_03_001": { - "x": 272, - "y": 758, - "width": 38, - "height": 160, - "rotation": 0, - "spritesheet": 1 - }, - "block001_01_001": { - "x": 2019, - "y": 1295, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_02_001": { - "x": 2019, - "y": 1417, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_02_color_001": { - "x": 3091, - "y": 2513, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "block001_03_001": { - "x": 1764, - "y": 1401, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_03_color_001": { - "x": 4057, - "y": 1926, - "width": 38, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block001_04_001": { - "x": 1033, - "y": 1135, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_04_color_001": { - "x": 3979, - "y": 3702, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block001_05_001": { - "x": 1281, - "y": 1313, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_05_color_001": { - "x": 2737, - "y": 488, - "width": 38, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_06_001": { - "x": 1403, - "y": 1345, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_06_color_001": { - "x": 1195, - "y": 2317, - "width": 120, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "block001_07_001": { - "x": 1763, - "y": 1523, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_07_color_001": { - "x": 791, - "y": 1191, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_slope_01_001": { - "x": 1033, - "y": 1257, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_slope_01_color_001": { - "x": 1643, - "y": 3109, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block001_slope_02_001": { - "x": 2021, - "y": 169, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block001_slope_02_color_001": { - "x": 2777, - "y": 647, - "width": 188, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block002_01_001": { - "x": 1281, - "y": 1435, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_01_color_001": { - "x": 1403, - "y": 1467, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_02_001": { - "x": 483, - "y": 1360, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_02_color_001": { - "x": 309, - "y": 1475, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_03_001": { - "x": 1, - "y": 1605, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_03_color_001": { - "x": 790, - "y": 1313, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_04_001": { - "x": 1032, - "y": 1379, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_04_color_001": { - "x": 789, - "y": 1435, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_05_001": { - "x": 483, - "y": 1360, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_05_color_001": { - "x": 1032, - "y": 1501, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_06_001": { - "x": 1280, - "y": 1557, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_06_color_001": { - "x": 1402, - "y": 1589, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_07_001": { - "x": 483, - "y": 1360, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_07_color_001": { - "x": 1031, - "y": 1623, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_slope_01_001": { - "x": 2368, - "y": 2739, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block002_slope_01_color_001": { - "x": 1279, - "y": 1679, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block002_slope_02_001": { - "x": 2777, - "y": 245, - "width": 208, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "block002_slope_02_color_001": { - "x": 2021, - "y": 291, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_color_01_001": { - "x": 1401, - "y": 1711, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_color_02_001": { - "x": 3599, - "y": 2877, - "width": 120, - "height": 92, - "rotation": 90, - "spritesheet": 1 - }, - "block003_color_03_001": { - "x": 2367, - "y": 2833, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block003_color_04_001": { - "x": 3373, - "y": 3224, - "width": 60, - "height": 92, - "rotation": 90, - "spritesheet": 1 - }, - "block003_color_05_001": { - "x": 1102, - "y": 3461, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block003_color_06_001": { - "x": 2583, - "y": 2993, - "width": 60, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block003_part01_001": { - "x": 2163, - "y": 3255, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block003_part02_001": { - "x": 2043, - "y": 3313, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block003_part03_001": { - "x": 2950, - "y": 3005, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block003_part04_001": { - "x": 483, - "y": 1482, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_part05_001": { - "x": 789, - "y": 1557, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_part06_001": { - "x": 789, - "y": 1679, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_slope_01_001": { - "x": 1029, - "y": 1745, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_slope_01_color_001": { - "x": 1641, - "y": 3191, - "width": 70, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block003_slope_02_001": { - "x": 1779, - "y": 361, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block003_slope_02_color_001": { - "x": 2777, - "y": 549, - "width": 190, - "height": 96, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_01_001": { - "x": 1279, - "y": 1801, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_01b_001": { - "x": 1401, - "y": 1833, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_01c_001": { - "x": 309, - "y": 1597, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_01d_001": { - "x": 483, - "y": 1604, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_02_001": { - "x": 1423, - "y": 445, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_02b_001": { - "x": 1423, - "y": 567, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_02c_001": { - "x": 962, - "y": 581, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block004_slope_02d_001": { - "x": 1422, - "y": 689, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_02_001": { - "x": 2717, - "y": 2477, - "width": 120, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block005_02_color_001": { - "x": 3072, - "y": 3017, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005_02b_001": { - "x": 2839, - "y": 2579, - "width": 90, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block005_03_001": { - "x": 3467, - "y": 3257, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block005_03_color_001": { - "x": 1, - "y": 1727, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_04_001": { - "x": 789, - "y": 1801, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_04_color_001": { - "x": 2163, - "y": 3311, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005_04b_001": { - "x": 1029, - "y": 1867, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_05_001": { - "x": 1279, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_06_001": { - "x": 3194, - "y": 2983, - "width": 56, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "block005_06_color_001": { - "x": 309, - "y": 1719, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_07_001": { - "x": 4039, - "y": 2952, - "width": 56, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_07_color_001": { - "x": 3252, - "y": 3117, - "width": 54, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block005_08_001": { - "x": 1, - "y": 1849, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_09_001": { - "x": 2929, - "y": 1869, - "width": 48, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "block005_09_color_001": { - "x": 483, - "y": 1726, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_10_001": { - "x": 3381, - "y": 1364, - "width": 120, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "block005_10_color_001": { - "x": 3252, - "y": 3005, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005_11_001": { - "x": 3381, - "y": 1486, - "width": 120, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "block005_11_color_001": { - "x": 2950, - "y": 2947, - "width": 120, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "block005_12_001": { - "x": 309, - "y": 1841, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_13_001": { - "x": 1, - "y": 1971, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_16_001": { - "x": 483, - "y": 1848, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_17_001": { - "x": 3249, - "y": 3257, - "width": 120, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_01_001": { - "x": 223, - "y": 3671, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_01_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_02_001": { - "x": 3937, - "y": 1216, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_02_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_03_001": { - "x": 343, - "y": 3725, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_03_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_04_001": { - "x": 3937, - "y": 1290, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_04_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_05_001": { - "x": 1029, - "y": 1989, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_06_001": { - "x": 791, - "y": 825, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_01_001": { - "x": 309, - "y": 1963, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_01_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block005_slope_square_02_001": { - "x": 1, - "y": 2093, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_02_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_03_001": { - "x": 483, - "y": 1970, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_04_001": { - "x": 309, - "y": 2085, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_04_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block005_slope_square_05_001": { - "x": 1, - "y": 2215, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005_slope_square_05_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_02_001": { - "x": 2717, - "y": 2569, - "width": 120, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_02_color_001": { - "x": 3072, - "y": 3017, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_02b_001": { - "x": 2716, - "y": 2661, - "width": 90, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_03_001": { - "x": 3371, - "y": 3286, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_03_color_001": { - "x": 1, - "y": 1727, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_04_001": { - "x": 789, - "y": 2045, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_04_color_001": { - "x": 2163, - "y": 3311, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_04b_001": { - "x": 483, - "y": 2092, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_05_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_06_001": { - "x": 3194, - "y": 3071, - "width": 56, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_06_color_001": { - "x": 309, - "y": 1719, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_07_001": { - "x": 4039, - "y": 3074, - "width": 56, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_07_color_001": { - "x": 3252, - "y": 3117, - "width": 54, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_08_001": { - "x": 1, - "y": 2337, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_09_001": { - "x": 2929, - "y": 1919, - "width": 48, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_09_color_001": { - "x": 483, - "y": 1726, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_10_001": { - "x": 3381, - "y": 1608, - "width": 120, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_10_color_001": { - "x": 3252, - "y": 3005, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_11_001": { - "x": 3380, - "y": 1730, - "width": 120, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_11_color_001": { - "x": 2950, - "y": 2947, - "width": 120, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_12_001": { - "x": 2655, - "y": 1013, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_13_001": { - "x": 2493, - "y": 1121, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_16_001": { - "x": 2280, - "y": 1311, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_17_001": { - "x": 3249, - "y": 3279, - "width": 120, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_01_001": { - "x": 123, - "y": 3674, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_01_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_02_001": { - "x": 3937, - "y": 1364, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_02_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_03_001": { - "x": 223, - "y": 3743, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_03_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_04_001": { - "x": 2777, - "y": 865, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_04_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_05_001": { - "x": 2157, - "y": 1397, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_06_001": { - "x": 791, - "y": 947, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_01_001": { - "x": 2777, - "y": 1013, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_01_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_slope_square_02_001": { - "x": 2983, - "y": 1235, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_02_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_03_001": { - "x": 3137, - "y": 1309, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_04_001": { - "x": 3259, - "y": 1355, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_04_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block005b_slope_square_05_001": { - "x": 3489, - "y": 1441, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block005b_slope_square_05_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_02_001": { - "x": 1151, - "y": 1745, - "width": 120, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block005c_03_001": { - "x": 3900, - "y": 3190, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_04_001": { - "x": 121, - "y": 3818, - "width": 72, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_06_001": { - "x": 1135, - "y": 2909, - "width": 58, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_10_001": { - "x": 3072, - "y": 2959, - "width": 120, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_11_001": { - "x": 2433, - "y": 1093, - "width": 120, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "block005c_slope_01_001": { - "x": 1, - "y": 3679, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_slope_02_001": { - "x": 3937, - "y": 778, - "width": 156, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_slope_square_01_001": { - "x": 1195, - "y": 1917, - "width": 82, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_slope_square_02_001": { - "x": 2119, - "y": 2921, - "width": 120, - "height": 74, - "rotation": 0, - "spritesheet": 1 - }, - "block005c_slope_square_03_001": { - "x": 2165, - "y": 763, - "width": 32, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "block006_01_001": { - "x": 2123, - "y": 2739, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_02_001": { - "x": 2367, - "y": 2927, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_03_001": { - "x": 3806, - "y": 3166, - "width": 60, - "height": 92, - "rotation": 90, - "spritesheet": 1 - }, - "block006_04_001": { - "x": 2461, - "y": 3007, - "width": 60, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block006_05_001": { - "x": 2655, - "y": 1135, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_06_001": { - "x": 3607, - "y": 2389, - "width": 92, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_07_001": { - "x": 2493, - "y": 1243, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_08_001": { - "x": 2279, - "y": 1433, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_09_001": { - "x": 1184, - "y": 3509, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block006_10_001": { - "x": 3605, - "y": 2511, - "width": 92, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_11_001": { - "x": 3374, - "y": 2848, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_12_001": { - "x": 1643, - "y": 3015, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_13_001": { - "x": 2960, - "y": 2699, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block006_14_001": { - "x": 3684, - "y": 3192, - "width": 60, - "height": 92, - "rotation": 90, - "spritesheet": 1 - }, - "block006_15_001": { - "x": 3590, - "y": 3183, - "width": 92, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block006_16_001": { - "x": 2141, - "y": 1519, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_17_001": { - "x": 2018, - "y": 1539, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_18_001": { - "x": 1763, - "y": 1645, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_19_001": { - "x": 2777, - "y": 1135, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_20_001": { - "x": 2001, - "y": 2759, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_21_001": { - "x": 1875, - "y": 2811, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_22_001": { - "x": 3600, - "y": 2633, - "width": 92, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_23_001": { - "x": 3599, - "y": 2755, - "width": 92, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_24_001": { - "x": 1751, - "y": 2865, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_25_001": { - "x": 2983, - "y": 1357, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_26_001": { - "x": 3374, - "y": 2942, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_color_01_001": { - "x": 3099, - "y": 2089, - "width": 120, - "height": 32, - "rotation": 90, - "spritesheet": 1 - }, - "block006_color_02_001": { - "x": 3137, - "y": 1431, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_color_03_001": { - "x": 3259, - "y": 1477, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_color_04_001": { - "x": 1601, - "y": 3249, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block006_color_05_001": { - "x": 1102, - "y": 3523, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block006_color_06_001": { - "x": 3489, - "y": 1563, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_01_001": { - "x": 2361, - "y": 3021, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_01_color_001": { - "x": 3709, - "y": 1638, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_02_001": { - "x": 312, - "y": 863, - "width": 182, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_02_color_001": { - "x": 489, - "y": 994, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_01_001": { - "x": 3935, - "y": 1726, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_01_color_001": { - "x": 1481, - "y": 3285, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_02_001": { - "x": 2655, - "y": 1257, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_02_color_001": { - "x": 1125, - "y": 3263, - "width": 62, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_03_001": { - "x": 2492, - "y": 1365, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block006_slope_square_04_001": { - "x": 2263, - "y": 1555, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_01_001": { - "x": 2140, - "y": 1641, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_01_small_001": { - "x": 1020, - "y": 3539, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block007_02_001": { - "x": 2017, - "y": 1661, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_03_001": { - "x": 1885, - "y": 1713, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_04_001": { - "x": 1762, - "y": 1767, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_05_001": { - "x": 1401, - "y": 1955, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_06_001": { - "x": 1278, - "y": 2045, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_06_color_001": { - "x": 3641, - "y": 1213, - "width": 10, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "block007_07_001": { - "x": 1400, - "y": 2077, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_07_color_001": { - "x": 2969, - "y": 583, - "width": 12, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "block007_08_001": { - "x": 1277, - "y": 2167, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_08_color_001": { - "x": 1759, - "y": 3287, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block007_09_001": { - "x": 2777, - "y": 1257, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_001_001": { - "x": 600, - "y": 3300, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_002_001": { - "x": 3611, - "y": 1617, - "width": 96, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_003_001": { - "x": 3806, - "y": 3228, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_004_001": { - "x": 1195, - "y": 2805, - "width": 80, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_005_001": { - "x": 3589, - "y": 3265, - "width": 80, - "height": 90, - "rotation": 90, - "spritesheet": 1 - }, - "block007_bgcolor_006_001": { - "x": 3855, - "y": 1654, - "width": 80, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "block007_bgcolor_007_001": { - "x": 3611, - "y": 1519, - "width": 96, - "height": 96, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_008_001": { - "x": 3609, - "y": 2025, - "width": 40, - "height": 96, - "rotation": 90, - "spritesheet": 1 - }, - "block007_bgcolor_009_001": { - "x": 123, - "y": 2479, - "width": 90, - "height": 112, - "rotation": 90, - "spritesheet": 1 - }, - "block007_bgcolor_010_001": { - "x": 3765, - "y": 3584, - "width": 38, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_011_001": { - "x": 1195, - "y": 2907, - "width": 98, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "block007_bgcolor_012_001": { - "x": 1759, - "y": 3321, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block007_bgcolor_013_001": { - "x": 3608, - "y": 2067, - "width": 96, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block007_color_001_001": { - "x": 2371, - "y": 2393, - "width": 108, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block007_color_002_001": { - "x": 3589, - "y": 3245, - "width": 18, - "height": 92, - "rotation": 90, - "spritesheet": 1 - }, - "block007_color_003_001": { - "x": 1665, - "y": 537, - "width": 78, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block007_color_004_001": { - "x": 3611, - "y": 1441, - "width": 18, - "height": 76, - "rotation": 0, - "spritesheet": 1 - }, - "block007_color_005_001": { - "x": 3451, - "y": 653, - "width": 10, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block007_color_006_001": { - "x": 778, - "y": 553, - "width": 108, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "block007_color_007_001": { - "x": 777, - "y": 663, - "width": 104, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "block007_color_008_001": { - "x": 2371, - "y": 2413, - "width": 18, - "height": 108, - "rotation": 90, - "spritesheet": 1 - }, - "block007_corner_001": { - "x": 3091, - "y": 2553, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_01_001": { - "x": 1029, - "y": 2111, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_01_color_001": { - "x": 123, - "y": 3230, - "width": 108, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_02_001": { - "x": 791, - "y": 1069, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_02_color_001": { - "x": 1665, - "y": 559, - "width": 216, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "block007_slope_square_01_001": { - "x": 789, - "y": 2167, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_square_01_color_001": { - "x": 2965, - "y": 837, - "width": 28, - "height": 16, - "rotation": 90, - "spritesheet": 1 - }, - "block007_slope_square_02_001": { - "x": 483, - "y": 2214, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007_slope_square_02_color_001": { - "x": 1469, - "y": 3319, - "width": 48, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_01_001": { - "x": 1027, - "y": 2233, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_01_color_001": { - "x": 1521, - "y": 3117, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_02_color_001": { - "x": 1195, - "y": 2439, - "width": 120, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_03_001": { - "x": 1525, - "y": 1529, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_03_color_001": { - "x": 3451, - "y": 695, - "width": 120, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_04_color_001": { - "x": 2455, - "y": 673, - "width": 120, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_05_001": { - "x": 195, - "y": 3864, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_05_color_001": { - "x": 789, - "y": 2289, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_06_001": { - "x": 483, - "y": 2336, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_06_color_001": { - "x": 3095, - "y": 2211, - "width": 36, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_07_001": { - "x": 239, - "y": 2329, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_07_color_001": { - "x": 1481, - "y": 3209, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_08_001": { - "x": 361, - "y": 2351, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_08_color_001": { - "x": 1395, - "y": 3363, - "width": 68, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_bgcolor_01_001": { - "x": 599, - "y": 3400, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_bgcolor_02_001": { - "x": 1651, - "y": 2819, - "width": 120, - "height": 98, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_bgcolor_03_001": { - "x": 2856, - "y": 1745, - "width": 120, - "height": 72, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_bgcolor_05_001": { - "x": 1, - "y": 2459, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_bgcolor_06_001": { - "x": 1649, - "y": 2941, - "width": 72, - "height": 98, - "rotation": 90, - "spritesheet": 1 - }, - "block007b_bgcolor_07_001": { - "x": 1, - "y": 3879, - "width": 72, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block007b_bgcolor_08_001": { - "x": 3823, - "y": 2600, - "width": 104, - "height": 104, - "rotation": 0, - "spritesheet": 1 - }, - "block008_02_001": { - "x": 893, - "y": 3577, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_02_color_001": { - "x": 2041, - "y": 3369, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block008_03_001": { - "x": 761, - "y": 3633, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_03_color_001": { - "x": 2427, - "y": 1459, - "width": 60, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block008_04_001": { - "x": 677, - "y": 3684, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_04_color_001": { - "x": 1799, - "y": 3181, - "width": 58, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "block008_05_001": { - "x": 1859, - "y": 3127, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_05_color_001": { - "x": 1246, - "y": 3623, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block008_06_001": { - "x": 1713, - "y": 3221, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_06_color_001": { - "x": 1082, - "y": 3539, - "width": 58, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block008_06_color_b_001": { - "x": 1164, - "y": 3637, - "width": 18, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block008_07_001": { - "x": 1635, - "y": 3263, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_07_color_001": { - "x": 1921, - "y": 3187, - "width": 54, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "block008_08_001": { - "x": 1981, - "y": 3137, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_08_color_001": { - "x": 3155, - "y": 779, - "width": 16, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "block008_09_001": { - "x": 1859, - "y": 3189, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_10_001": { - "x": 1697, - "y": 3283, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_11_001": { - "x": 1633, - "y": 3325, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block008_color_05b_001": { - "x": 1164, - "y": 3637, - "width": 18, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_01_001": { - "x": 1399, - "y": 3147, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_02_001": { - "x": 823, - "y": 3657, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_06_001": { - "x": 361, - "y": 2329, - "width": 60, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_07_001": { - "x": 299, - "y": 3775, - "width": 42, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_07b_001": { - "x": 77, - "y": 3679, - "width": 42, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_07c_001": { - "x": 77, - "y": 3723, - "width": 42, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_08_001": { - "x": 77, - "y": 3833, - "width": 20, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_08b_001": { - "x": 77, - "y": 3855, - "width": 20, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_10_001": { - "x": 551, - "y": 3632, - "width": 60, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_10b_001": { - "x": 551, - "y": 3694, - "width": 60, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_11_001": { - "x": 949, - "y": 3661, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_12_001": { - "x": 1353, - "y": 3329, - "width": 42, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_13_001": { - "x": 1164, - "y": 3523, - "width": 60, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_15_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_16_001": { - "x": 1659, - "y": 1569, - "width": 102, - "height": 102, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_18_001": { - "x": 3830, - "y": 2002, - "width": 80, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_22_001": { - "x": 1779, - "y": 851, - "width": 34, - "height": 142, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_23_001": { - "x": 2433, - "y": 957, - "width": 20, - "height": 134, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_24_001": { - "x": 799, - "y": 284, - "width": 30, - "height": 2, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_24b_001": { - "x": 2655, - "y": 725, - "width": 28, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_25_001": { - "x": 2691, - "y": 475, - "width": 44, - "height": 142, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_26_001": { - "x": 2020, - "y": 1087, - "width": 34, - "height": 136, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_27_001": { - "x": 1421, - "y": 811, - "width": 32, - "height": 134, - "rotation": 90, - "spritesheet": 1 - }, - "block008_topcolor_28_001": { - "x": 1888, - "y": 1375, - "width": 14, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "block008_topcolor_29_001": { - "x": 1519, - "y": 3199, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block009_01_001": { - "x": 239, - "y": 2451, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_01_color_001": { - "x": 601, - "y": 2868, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 1 - }, - "block009_02_001": { - "x": 1, - "y": 2581, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_02_color_001": { - "x": 123, - "y": 3120, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 1 - }, - "block009_03_001": { - "x": 2655, - "y": 1379, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_03_color_001": { - "x": 605, - "y": 2084, - "width": 120, - "height": 114, - "rotation": 90, - "spritesheet": 1 - }, - "block009_04_001": { - "x": 2491, - "y": 1487, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_04_color_001": { - "x": 123, - "y": 2247, - "width": 120, - "height": 114, - "rotation": 90, - "spritesheet": 1 - }, - "block009_05_001": { - "x": 2262, - "y": 1677, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_05_color_001": { - "x": 605, - "y": 1780, - "width": 116, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "block009_06_001": { - "x": 2139, - "y": 1763, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_06_color_001": { - "x": 123, - "y": 1969, - "width": 116, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "block009_07_001": { - "x": 2007, - "y": 1783, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_07_color_001": { - "x": 605, - "y": 1780, - "width": 116, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "block009_08_001": { - "x": 1884, - "y": 1835, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_08_color_001": { - "x": 123, - "y": 1969, - "width": 116, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "block009_part_01_001": { - "x": 2838, - "y": 2759, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009_part_01_color_001": { - "x": 1033, - "y": 2355, - "width": 112, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block009_part_02_001": { - "x": 1511, - "y": 3351, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009_part_02_color_001": { - "x": 2637, - "y": 3295, - "width": 52, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block009_slope_01_001": { - "x": 1761, - "y": 1889, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_slope_01_color_001": { - "x": 2165, - "y": 697, - "width": 64, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "block009_slope_02_001": { - "x": 489, - "y": 1116, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009_slope_02_color_001": { - "x": 911, - "y": 2265, - "width": 114, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_01_001": { - "x": 1399, - "y": 2199, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_01_color_001": { - "x": 911, - "y": 1693, - "width": 120, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_02_001": { - "x": 1277, - "y": 2289, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_02_color_001": { - "x": 123, - "y": 1725, - "width": 120, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_03_001": { - "x": 3173, - "y": 652, - "width": 88, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_03_color_001": { - "x": 1198, - "y": 995, - "width": 82, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_04_001": { - "x": 3173, - "y": 774, - "width": 88, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_04_color_001": { - "x": 1198, - "y": 1113, - "width": 82, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_05_001": { - "x": 605, - "y": 2456, - "width": 110, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_05_color_001": { - "x": 911, - "y": 1937, - "width": 104, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_06_001": { - "x": 123, - "y": 2653, - "width": 110, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_06_color_001": { - "x": 911, - "y": 2043, - "width": 104, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_07_001": { - "x": 2777, - "y": 1379, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_07_color_001": { - "x": 2183, - "y": 689, - "width": 108, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_08_001": { - "x": 2655, - "y": 755, - "width": 120, - "height": 128, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_08_color_001": { - "x": 605, - "y": 1658, - "width": 120, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_09_001": { - "x": 1033, - "y": 2411, - "width": 110, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_09_color_001": { - "x": 123, - "y": 2085, - "width": 104, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block009b_10_001": { - "x": 605, - "y": 2578, - "width": 110, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_10_color_001": { - "x": 3377, - "y": 2404, - "width": 104, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_slope_01_001": { - "x": 2983, - "y": 1479, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_slope_01_color_001": { - "x": 1197, - "y": 1231, - "width": 82, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_slope_02_001": { - "x": 1, - "y": 1239, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009b_slope_02_color_001": { - "x": 2983, - "y": 473, - "width": 202, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_01_001": { - "x": 3137, - "y": 1553, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_01_color_001": { - "x": 603, - "y": 516, - "width": 27, - "height": 5, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_02_001": { - "x": 2960, - "y": 2761, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_02_color_001": { - "x": 123, - "y": 2369, - "width": 114, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_04_001": { - "x": 4051, - "y": 2804, - "width": 44, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_04_color_001": { - "x": 1164, - "y": 3461, - "width": 18, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_05_001": { - "x": 3992, - "y": 3190, - "width": 44, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_05_color_001": { - "x": 3989, - "y": 3418, - "width": 18, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_10_001": { - "x": 3259, - "y": 1599, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_11_001": { - "x": 3489, - "y": 1685, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_base_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_01_001": { - "x": 1536, - "y": 1047, - "width": 114, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_color_02_001": { - "x": 2435, - "y": 835, - "width": 120, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_color_03_001": { - "x": 1536, - "y": 927, - "width": 118, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_color_04_001": { - "x": 1246, - "y": 3623, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_05_001": { - "x": 1164, - "y": 3637, - "width": 18, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_06_001": { - "x": 1033, - "y": 785, - "width": 165, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_07_001": { - "x": 1, - "y": 964, - "width": 262, - "height": 29, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_08_001": { - "x": 1246, - "y": 3647, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_color_09_001": { - "x": 77, - "y": 3809, - "width": 42, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_line_01_001": { - "x": 313, - "y": 297, - "width": 120, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_line_02_001": { - "x": 312, - "y": 857, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_line_03_001": { - "x": 313, - "y": 419, - "width": 120, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_line_04_001": { - "x": 313, - "y": 541, - "width": 120, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_slope_01_001": { - "x": 3709, - "y": 1760, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_01_color_001": { - "x": 3937, - "y": 852, - "width": 156, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_02_001": { - "x": 1, - "y": 1361, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_02_color_001": { - "x": 497, - "y": 833, - "width": 250, - "height": 31, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_03_001": { - "x": 3935, - "y": 1848, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_03_color_001": { - "x": 569, - "y": 45, - "width": 40, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_slope_04_001": { - "x": 484, - "y": 1238, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_04_color_001": { - "x": 118, - "y": 47, - "width": 64, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "block009c_slope_05_color_001": { - "x": 939, - "y": 900, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "block009c_slope_06_color_001": { - "x": 692, - "y": 854, - "width": 12, - "height": 6, - "rotation": 0, - "spritesheet": 1 - }, - "block010_01_001": { - "x": 911, - "y": 2355, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_02_001": { - "x": 789, - "y": 2411, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_03_001": { - "x": 483, - "y": 2458, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_04_001": { - "x": 361, - "y": 2473, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_06_001": { - "x": 237, - "y": 2573, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_07_001": { - "x": 1, - "y": 2703, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_08_001": { - "x": 911, - "y": 2477, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_01_001": { - "x": 1995, - "y": 2941, - "width": 120, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_02_001": { - "x": 785, - "y": 2533, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_03_001": { - "x": 2637, - "y": 3239, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_04_001": { - "x": 2161, - "y": 3367, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_05_001": { - "x": 2827, - "y": 3007, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block010_piece_06_001": { - "x": 2705, - "y": 3027, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block010_slope_01_001": { - "x": 483, - "y": 2580, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_slope_02_001": { - "x": 1, - "y": 1483, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_slope_square_01_001": { - "x": 359, - "y": 2595, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_slope_square_02_001": { - "x": 2157, - "y": 1275, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block010_slope_square_03_001": { - "x": 725, - "y": 1406, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "block011_01_001": { - "x": 2021, - "y": 697, - "width": 130, - "height": 142, - "rotation": 90, - "spritesheet": 1 - }, - "block011_01_color_001": { - "x": 2655, - "y": 885, - "width": 120, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "block011_02_001": { - "x": 1778, - "y": 887, - "width": 114, - "height": 140, - "rotation": 90, - "spritesheet": 1 - }, - "block011_02_color_001": { - "x": 2163, - "y": 937, - "width": 112, - "height": 128, - "rotation": 90, - "spritesheet": 1 - }, - "block011_03_001": { - "x": 3137, - "y": 1205, - "width": 122, - "height": 102, - "rotation": 0, - "spritesheet": 1 - }, - "block011_03_color_001": { - "x": 605, - "y": 2206, - "width": 114, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block011_04_001": { - "x": 1284, - "y": 647, - "width": 134, - "height": 136, - "rotation": 90, - "spritesheet": 1 - }, - "block011_04_color_001": { - "x": 2293, - "y": 1177, - "width": 132, - "height": 134, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_01_001": { - "x": 3437, - "y": 817, - "width": 50, - "height": 140, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_01_color_001": { - "x": 2933, - "y": 867, - "width": 48, - "height": 128, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_02_001": { - "x": 3937, - "y": 123, - "width": 50, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_02_color_001": { - "x": 2933, - "y": 1363, - "width": 48, - "height": 96, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_03_001": { - "x": 246, - "y": 1117, - "width": 62, - "height": 140, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_03_color_001": { - "x": 2965, - "y": 805, - "width": 30, - "height": 16, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_04_001": { - "x": 3609, - "y": 1955, - "width": 68, - "height": 96, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_04_color_001": { - "x": 1, - "y": 3823, - "width": 54, - "height": 74, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_05_001": { - "x": 3661, - "y": 897, - "width": 122, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_05_color_001": { - "x": 1151, - "y": 2111, - "width": 114, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_06_001": { - "x": 605, - "y": 1546, - "width": 118, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_06_color_001": { - "x": 431, - "y": 1963, - "width": 114, - "height": 50, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_07_001": { - "x": 3873, - "y": 1160, - "width": 126, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_07_color_001": { - "x": 1885, - "y": 1555, - "width": 14, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_08_001": { - "x": 123, - "y": 2425, - "width": 114, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_08_color_001": { - "x": 2614, - "y": 1459, - "width": 88, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_09_001": { - "x": 299, - "y": 3671, - "width": 50, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_09_color_001": { - "x": 3202, - "y": 2941, - "width": 48, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_10_001": { - "x": 3082, - "y": 2713, - "width": 60, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_10_color_001": { - "x": 199, - "y": 3674, - "width": 54, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_11_001": { - "x": 2975, - "y": 3283, - "width": 50, - "height": 52, - "rotation": 90, - "spritesheet": 1 - }, - "block011_edge_11_color_001": { - "x": 3661, - "y": 857, - "width": 24, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "block011_edge_12_001": { - "x": 723, - "y": 1906, - "width": 62, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_01_001": { - "x": 731, - "y": 1012, - "width": 58, - "height": 148, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_02_001": { - "x": 3821, - "y": 2706, - "width": 58, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_03_001": { - "x": 3417, - "y": 1082, - "width": 70, - "height": 146, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_04_001": { - "x": 3829, - "y": 2084, - "width": 70, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_05_001": { - "x": 3881, - "y": 1030, - "width": 128, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_06_001": { - "x": 2157, - "y": 1211, - "width": 122, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_07_001": { - "x": 3417, - "y": 1230, - "width": 132, - "height": 70, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_08_001": { - "x": 605, - "y": 1482, - "width": 118, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_09_001": { - "x": 2932, - "y": 1603, - "width": 56, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_10_001": { - "x": 721, - "y": 2300, - "width": 66, - "height": 50, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_11_001": { - "x": 4038, - "y": 3330, - "width": 56, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_12_001": { - "x": 721, - "y": 2106, - "width": 66, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_13_001": { - "x": 2293, - "y": 835, - "width": 60, - "height": 140, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_14_001": { - "x": 3823, - "y": 2522, - "width": 46, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_15_001": { - "x": 1656, - "y": 2185, - "width": 72, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_16_001": { - "x": 3261, - "y": 1277, - "width": 76, - "height": 146, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_17_001": { - "x": 1204, - "y": 595, - "width": 138, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "block011_light_18_001": { - "x": 2371, - "y": 2337, - "width": 108, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_19_001": { - "x": 605, - "y": 2306, - "width": 114, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "block011_light_20_001": { - "x": 2685, - "y": 619, - "width": 134, - "height": 90, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_01_001": { - "x": 235, - "y": 2695, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_01_color_001": { - "x": 3769, - "y": 3502, - "width": 34, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_02_001": { - "x": 1, - "y": 2825, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_02_color_001": { - "x": 3378, - "y": 1974, - "width": 106, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_03_001": { - "x": 2654, - "y": 1501, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_03_color_001": { - "x": 605, - "y": 1896, - "width": 108, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_04_001": { - "x": 2491, - "y": 1609, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_04_color_001": { - "x": 1661, - "y": 1251, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_01_001": { - "x": 912, - "y": 1433, - "width": 110, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_01_color_001": { - "x": 2805, - "y": 3335, - "width": 50, - "height": 52, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_02_001": { - "x": 3376, - "y": 2504, - "width": 92, - "height": 100, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_02_color_001": { - "x": 1394, - "y": 3619, - "width": 54, - "height": 60, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_03_001": { - "x": 1197, - "y": 1347, - "width": 102, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_03_color_001": { - "x": 1921, - "y": 3263, - "width": 52, - "height": 56, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_04_001": { - "x": 1025, - "y": 2847, - "width": 108, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_04_color_001": { - "x": 3082, - "y": 2775, - "width": 46, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_05_001": { - "x": 3611, - "y": 1709, - "width": 96, - "height": 84, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_05_color_001": { - "x": 4067, - "y": 3676, - "width": 28, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_06_001": { - "x": 3610, - "y": 1877, - "width": 76, - "height": 96, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_06_color_001": { - "x": 949, - "y": 3689, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_07_001": { - "x": 2370, - "y": 2649, - "width": 98, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_07_color_001": { - "x": 1521, - "y": 2749, - "width": 26, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_piece_08_001": { - "x": 1195, - "y": 1755, - "width": 80, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_piece_08_color_001": { - "x": 985, - "y": 3351, - "width": 34, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_slope_01_001": { - "x": 3378, - "y": 2082, - "width": 106, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_slope_01_color_001": { - "x": 3375, - "y": 2690, - "width": 84, - "height": 100, - "rotation": 90, - "spritesheet": 1 - }, - "block011b_slope_02_001": { - "x": 3709, - "y": 237, - "width": 218, - "height": 112, - "rotation": 0, - "spritesheet": 1 - }, - "block011b_slope_02_color_001": { - "x": 319, - "y": 169, - "width": 178, - "height": 104, - "rotation": 0, - "spritesheet": 1 - }, - "block012_01_001": { - "x": 2261, - "y": 1799, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_01_color_001": { - "x": 2129, - "y": 1885, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_02_001": { - "x": 2006, - "y": 1905, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_02_color_001": { - "x": 1883, - "y": 1957, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_03_001": { - "x": 1761, - "y": 2011, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_03_color_001": { - "x": 1399, - "y": 2321, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_04_001": { - "x": 1191, - "y": 3007, - "width": 84, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_04_color_001": { - "x": 1195, - "y": 2073, - "width": 80, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_05_001": { - "x": 1871, - "y": 2993, - "width": 120, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "block012_05_color_001": { - "x": 3193, - "y": 368, - "width": 120, - "height": 68, - "rotation": 90, - "spritesheet": 1 - }, - "block012_06_001": { - "x": 2857, - "y": 1623, - "width": 72, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_06_color_001": { - "x": 711, - "y": 2874, - "width": 68, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block012_07_001": { - "x": 2123, - "y": 2833, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "block012_07_color_001": { - "x": 1029, - "y": 2655, - "width": 110, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block012_08_001": { - "x": 299, - "y": 3723, - "width": 50, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block012_08_color_001": { - "x": 3990, - "y": 3354, - "width": 46, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "block012_09_001": { - "x": 3987, - "y": 3530, - "width": 44, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "block012_09_color_001": { - "x": 1359, - "y": 3305, - "width": 36, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block012_10_001": { - "x": 2931, - "y": 1661, - "width": 50, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block012_10_color_001": { - "x": 3437, - "y": 711, - "width": 10, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block012_11_001": { - "x": 3989, - "y": 3438, - "width": 44, - "height": 44, - "rotation": 0, - "spritesheet": 1 - }, - "block012_12_001": { - "x": 1657, - "y": 1983, - "width": 100, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "block012_12_color_001": { - "x": 3805, - "y": 3320, - "width": 88, - "height": 90, - "rotation": 90, - "spritesheet": 1 - }, - "block012_13_001": { - "x": 3377, - "y": 2190, - "width": 106, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "block012_13_color_001": { - "x": 3375, - "y": 2598, - "width": 100, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "block012_14_001": { - "x": 1662, - "y": 1143, - "width": 102, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "block012_14_color_001": { - "x": 3611, - "y": 1795, - "width": 96, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "block012_light_01_001": { - "x": 2941, - "y": 3213, - "width": 34, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block012_light_02_001": { - "x": 2699, - "y": 3139, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block012_light_03_001": { - "x": 2899, - "y": 1013, - "width": 32, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012_light_04_001": { - "x": 1149, - "y": 2333, - "width": 120, - "height": 44, - "rotation": 90, - "spritesheet": 1 - }, - "block012_light_05_001": { - "x": 4038, - "y": 3196, - "width": 70, - "height": 56, - "rotation": 90, - "spritesheet": 1 - }, - "block012_light_06_001": { - "x": 4038, - "y": 3268, - "width": 60, - "height": 56, - "rotation": 90, - "spritesheet": 1 - }, - "block012_light_07_001": { - "x": 1519, - "y": 3281, - "width": 70, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "block012_light_08_001": { - "x": 4035, - "y": 3450, - "width": 60, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_01_001": { - "x": 1277, - "y": 2411, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_01_color_001": { - "x": 907, - "y": 2599, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_02_001": { - "x": 781, - "y": 2655, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_02_color_001": { - "x": 481, - "y": 2702, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_03_001": { - "x": 357, - "y": 2717, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_03_color_001": { - "x": 235, - "y": 2817, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_04_001": { - "x": 3641, - "y": 1269, - "width": 66, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_04_color_001": { - "x": 1725, - "y": 3169, - "width": 50, - "height": 72, - "rotation": 90, - "spritesheet": 1 - }, - "block012b_05_001": { - "x": 2583, - "y": 3055, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_05_color_001": { - "x": 978, - "y": 3489, - "width": 68, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "block012b_06_001": { - "x": 731, - "y": 1162, - "width": 58, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_06_color_001": { - "x": 978, - "y": 3415, - "width": 40, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_07_001": { - "x": 1521, - "y": 2961, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_07_color_001": { - "x": 3204, - "y": 2835, - "width": 46, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_08_001": { - "x": 363, - "y": 2275, - "width": 66, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_09_001": { - "x": 2043, - "y": 3259, - "width": 56, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_10_001": { - "x": 243, - "y": 1711, - "width": 66, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "block012b_11_001": { - "x": 723, - "y": 1970, - "width": 56, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "block012b_12_001": { - "x": 1, - "y": 2947, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_12_color_001": { - "x": 2776, - "y": 1501, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_13_001": { - "x": 2982, - "y": 1601, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_13_color_001": { - "x": 3136, - "y": 1675, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_14_001": { - "x": 3258, - "y": 1721, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block012b_14_color_001": { - "x": 3488, - "y": 1807, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_01c_001": { - "x": 3708, - "y": 1882, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_01c_color_001": { - "x": 1905, - "y": 1237, - "width": 120, - "height": 112, - "rotation": 90, - "spritesheet": 1 - }, - "block013_02c_001": { - "x": 3934, - "y": 1970, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_02c_color_001": { - "x": 1557, - "y": 811, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "block013_03c_001": { - "x": 2613, - "y": 1623, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_03c_color_001": { - "x": 551, - "y": 3556, - "width": 40, - "height": 44, - "rotation": 90, - "spritesheet": 1 - }, - "block013_04c_001": { - "x": 2490, - "y": 1731, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_04c_color_001": { - "x": 722, - "y": 2078, - "width": 64, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block013_detail_01_001": { - "x": 431, - "y": 1597, - "width": 120, - "height": 50, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_01_color_001": { - "x": 1769, - "y": 615, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_02_001": { - "x": 777, - "y": 972, - "width": 12, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "block013_detail_02_color_001": { - "x": 3911, - "y": 647, - "width": 8, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "block013_detail_03_001": { - "x": 1283, - "y": 911, - "width": 128, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "block013_detail_03_color_001": { - "x": 2613, - "y": 1549, - "width": 72, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_04_001": { - "x": 243, - "y": 1625, - "width": 84, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_04_color_001": { - "x": 2631, - "y": 3349, - "width": 54, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block013_detail_05_001": { - "x": 2932, - "y": 1541, - "width": 60, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_05_color_001": { - "x": 2147, - "y": 1123, - "width": 60, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_06_001": { - "x": 77, - "y": 3767, - "width": 40, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block013_detail_06_color_001": { - "x": 985, - "y": 3331, - "width": 36, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_01_001": { - "x": 275, - "y": 463, - "width": 36, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_01_color_001": { - "x": 4057, - "y": 1726, - "width": 22, - "height": 66, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_02_001": { - "x": 1155, - "y": 1135, - "width": 40, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_03_001": { - "x": 2819, - "y": 3245, - "width": 34, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_03_color_001": { - "x": 1164, - "y": 3611, - "width": 24, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_04_001": { - "x": 2615, - "y": 1215, - "width": 38, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_04_color_001": { - "x": 3778, - "y": 3242, - "width": 26, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_05_001": { - "x": 2899, - "y": 1135, - "width": 32, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_06_001": { - "x": 2263, - "y": 169, - "width": 28, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_07_001": { - "x": 3105, - "y": 1235, - "width": 30, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_07_color_001": { - "x": 3691, - "y": 827, - "width": 16, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_08_001": { - "x": 2899, - "y": 1257, - "width": 32, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_09_001": { - "x": 2933, - "y": 997, - "width": 120, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_09_color_001": { - "x": 2941, - "y": 3249, - "width": 120, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_10_001": { - "x": 3661, - "y": 1021, - "width": 120, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_10_color_001": { - "x": 3104, - "y": 1601, - "width": 120, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_11_001": { - "x": 2933, - "y": 1119, - "width": 120, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_11_color_001": { - "x": 2575, - "y": 3167, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_12_001": { - "x": 1151, - "y": 1867, - "width": 120, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_12_color_001": { - "x": 3103, - "y": 1723, - "width": 120, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_13_001": { - "x": 3063, - "y": 3259, - "width": 120, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_14_001": { - "x": 2453, - "y": 3181, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_15_001": { - "x": 1154, - "y": 1379, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_16_001": { - "x": 2821, - "y": 3173, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_01_001": { - "x": 3155, - "y": 873, - "width": 16, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_01_color_001": { - "x": 2761, - "y": 610, - "width": 12, - "height": 6, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_02_001": { - "x": 3989, - "y": 3396, - "width": 20, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_02_color_001": { - "x": 3173, - "y": 623, - "width": 12, - "height": 10, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_03_001": { - "x": 3881, - "y": 991, - "width": 28, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_04_001": { - "x": 3137, - "y": 993, - "width": 14, - "height": 24, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_05_001": { - "x": 419, - "y": 3757, - "width": 32, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_05_color_001": { - "x": 3137, - "y": 927, - "width": 26, - "height": 16, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_06_001": { - "x": 2141, - "y": 1423, - "width": 14, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_06_color_001": { - "x": 312, - "y": 847, - "width": 8, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_07_001": { - "x": 1164, - "y": 3585, - "width": 18, - "height": 24, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_08_001": { - "x": 2402, - "y": 1413, - "width": 24, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_09_001": { - "x": 2401, - "y": 1447, - "width": 30, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_09_color_001": { - "x": 3641, - "y": 1233, - "width": 26, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_10_001": { - "x": 77, - "y": 3877, - "width": 20, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_10_color_001": { - "x": 731, - "y": 994, - "width": 16, - "height": 10, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_11_001": { - "x": 3173, - "y": 607, - "width": 14, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_12_001": { - "x": 3155, - "y": 837, - "width": 16, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_13_001": { - "x": 199, - "y": 3730, - "width": 22, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_13_color_001": { - "x": 3417, - "y": 1055, - "width": 16, - "height": 10, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_14_001": { - "x": 197, - "y": 3802, - "width": 26, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "block013_edge_c_14_color_001": { - "x": 2737, - "y": 610, - "width": 22, - "height": 6, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_15_001": { - "x": 195, - "y": 3830, - "width": 26, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block013_edge_c_16_001": { - "x": 2141, - "y": 1445, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_01_001": { - "x": 2899, - "y": 1379, - "width": 32, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_02_001": { - "x": 1155, - "y": 1257, - "width": 40, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_03_001": { - "x": 3105, - "y": 1357, - "width": 30, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_04_001": { - "x": 3063, - "y": 3223, - "width": 34, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_05_001": { - "x": 2263, - "y": 291, - "width": 28, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_06_001": { - "x": 1525, - "y": 1407, - "width": 26, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_07_001": { - "x": 3105, - "y": 1479, - "width": 30, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_08_001": { - "x": 2898, - "y": 1501, - "width": 32, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_09_001": { - "x": 1154, - "y": 1501, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_10_001": { - "x": 1151, - "y": 1989, - "width": 120, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_11_001": { - "x": 2455, - "y": 795, - "width": 120, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_12_001": { - "x": 2697, - "y": 3175, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_13_001": { - "x": 2263, - "y": 413, - "width": 120, - "height": 28, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_14_001": { - "x": 793, - "y": 313, - "width": 120, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_15_001": { - "x": 1153, - "y": 1623, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_16_001": { - "x": 2575, - "y": 3203, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_01_001": { - "x": 1246, - "y": 3541, - "width": 22, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_02_001": { - "x": 1521, - "y": 2805, - "width": 26, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_03_001": { - "x": 1359, - "y": 3237, - "width": 34, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_c_04_001": { - "x": 955, - "y": 3577, - "width": 20, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_05_001": { - "x": 4056, - "y": 2008, - "width": 38, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_06_001": { - "x": 955, - "y": 3609, - "width": 20, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_07_001": { - "x": 1775, - "y": 3255, - "width": 22, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_08_001": { - "x": 3765, - "y": 3552, - "width": 30, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "block013_light_c_09_001": { - "x": 1359, - "y": 3273, - "width": 36, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_10_001": { - "x": 1521, - "y": 2911, - "width": 26, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_11_001": { - "x": 823, - "y": 3679, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_12_001": { - "x": 1248, - "y": 3499, - "width": 20, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_13_001": { - "x": 3778, - "y": 3192, - "width": 26, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_14_001": { - "x": 1757, - "y": 3355, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_15_001": { - "x": 4061, - "y": 3764, - "width": 34, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "block013_light_c_16_001": { - "x": 739, - "y": 3708, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_01_001": { - "x": 2251, - "y": 1921, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_01_color_001": { - "x": 2128, - "y": 2007, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_02_001": { - "x": 2005, - "y": 2027, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_02_color_001": { - "x": 1883, - "y": 2079, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_03_001": { - "x": 1761, - "y": 2133, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_03_color_001": { - "x": 2735, - "y": 1623, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_04_001": { - "x": 2981, - "y": 1723, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign01_04_color_001": { - "x": 3135, - "y": 1797, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign02_01_001": { - "x": 3257, - "y": 1843, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign02_01_color_001": { - "x": 1033, - "y": 2533, - "width": 120, - "height": 110, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign02_02_001": { - "x": 3487, - "y": 1929, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign02_02_color_001": { - "x": 3379, - "y": 1852, - "width": 120, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign02_03_001": { - "x": 3707, - "y": 2004, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign02_03_color_001": { - "x": 605, - "y": 2700, - "width": 120, - "height": 110, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign02_04_001": { - "x": 3933, - "y": 2092, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign02_04_color_001": { - "x": 1905, - "y": 1359, - "width": 120, - "height": 112, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign03_01_001": { - "x": 2612, - "y": 1745, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_01_color_001": { - "x": 2489, - "y": 1853, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_02_001": { - "x": 2250, - "y": 2043, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_02_color_001": { - "x": 2127, - "y": 2129, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_03_001": { - "x": 2005, - "y": 2149, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_03_color_001": { - "x": 1883, - "y": 2201, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_04_001": { - "x": 1760, - "y": 2255, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign03_04_color_001": { - "x": 1399, - "y": 2443, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign04_01_001": { - "x": 1277, - "y": 2533, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign04_01_color_001": { - "x": 913, - "y": 1191, - "width": 120, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign05_01_001": { - "x": 1399, - "y": 2565, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_01_color_001": { - "x": 1277, - "y": 2655, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_02_001": { - "x": 903, - "y": 2721, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_02_color_001": { - "x": 781, - "y": 2777, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_03_001": { - "x": 479, - "y": 2824, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_03_color_001": { - "x": 357, - "y": 2839, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_04_001": { - "x": 235, - "y": 2939, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign05_04_color_001": { - "x": 1, - "y": 3069, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_01_001": { - "x": 479, - "y": 2946, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_01_color_001": { - "x": 911, - "y": 1815, - "width": 120, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign06_02_001": { - "x": 357, - "y": 2961, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_02_color_001": { - "x": 123, - "y": 1847, - "width": 120, - "height": 116, - "rotation": 90, - "spritesheet": 1 - }, - "blockDesign06_03_001": { - "x": 234, - "y": 3061, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_03_color_001": { - "x": 1, - "y": 3191, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_04_001": { - "x": 903, - "y": 2843, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign06_04_color_001": { - "x": 781, - "y": 2899, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_01_001": { - "x": 479, - "y": 3068, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_01_color_001": { - "x": 356, - "y": 3083, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_02_001": { - "x": 233, - "y": 3183, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_02_color_001": { - "x": 1, - "y": 3313, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_03_001": { - "x": 2734, - "y": 1745, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_03_color_001": { - "x": 2980, - "y": 1845, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_04_001": { - "x": 3134, - "y": 1919, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockDesign07_04_color_001": { - "x": 3256, - "y": 1965, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineOuter1_01_001": { - "x": 3173, - "y": 635, - "width": 10, - "height": 10, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineOuter2_01_001": { - "x": 3137, - "y": 975, - "width": 16, - "height": 16, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineOuter3_01_001": { - "x": 3775, - "y": 3278, - "width": 29, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineThick_01_001": { - "x": 778, - "y": 431, - "width": 120, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThick_02_001": { - "x": 2967, - "y": 683, - "width": 120, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThick_03_001": { - "x": 4081, - "y": 1682, - "width": 120, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThick_04_001": { - "x": 2141, - "y": 1461, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineThick_05_001": { - "x": 2141, - "y": 1477, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineThick_06_001": { - "x": 1885, - "y": 1583, - "width": 26, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThick_07_001": { - "x": 1886, - "y": 1493, - "width": 60, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThick_08_001": { - "x": 1889, - "y": 1131, - "width": 120, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThickb_01_001": { - "x": 3911, - "y": 664, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThickb_02_001": { - "x": 1524, - "y": 1651, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThickb_03_001": { - "x": 1523, - "y": 1773, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThickb_04_001": { - "x": 949, - "y": 3717, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineThickb_05_001": { - "x": 381, - "y": 3869, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutlineThickb_06_001": { - "x": 1521, - "y": 2859, - "width": 50, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutlineThickb_08_001": { - "x": 1523, - "y": 1895, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_01_001": { - "x": 3486, - "y": 2051, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_02_001": { - "x": 1745, - "y": 315, - "width": 120, - "height": 6, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_03_001": { - "x": 3486, - "y": 2173, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_04_001": { - "x": 3704, - "y": 2126, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_05_001": { - "x": 4082, - "y": 1438, - "width": 8, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_06_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_07_001": { - "x": 3641, - "y": 1201, - "width": 10, - "height": 10, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_08_001": { - "x": 3417, - "y": 1067, - "width": 16, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_09_001": { - "x": 3929, - "y": 237, - "width": 120, - "height": 6, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_10_001": { - "x": 1395, - "y": 3433, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_11_001": { - "x": 2838, - "y": 2821, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_12_001": { - "x": 3130, - "y": 2773, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_13_001": { - "x": 2960, - "y": 2823, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_14_001": { - "x": 3704, - "y": 2248, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_14new_001": { - "x": 1769, - "y": 287, - "width": 170, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_15_001": { - "x": 2779, - "y": 1, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_15_corner01_001": { - "x": 3873, - "y": 1095, - "width": 17, - "height": 6, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_15_corner02_001": { - "x": 3641, - "y": 1223, - "width": 10, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_15new_001": { - "x": 1769, - "y": 9, - "width": 276, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "blockOutline_16_001": { - "x": 1399, - "y": 3229, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "blockOutline_17_001": { - "x": 2535, - "y": 365, - "width": 200, - "height": 108, - "rotation": 0, - "spritesheet": 1 - }, - "brick_02_001": { - "x": 3932, - "y": 2214, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "bump_01_001": { - "x": 3691, - "y": 725, - "width": 100, - "height": 16, - "rotation": 90, - "spritesheet": 1 - }, - "bump_02_001": { - "x": 605, - "y": 2056, - "width": 115, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "bump_03_001": { - "x": 1549, - "y": 2817, - "width": 100, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "chain_01_001": { - "x": 498, - "y": 523, - "width": 78, - "height": 278, - "rotation": 90, - "spritesheet": 1 - }, - "colorPlank_01_001": { - "x": 2949, - "y": 3061, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "colorPlank_01_color_001": { - "x": 603, - "y": 2822, - "width": 110, - "height": 44, - "rotation": 0, - "spritesheet": 1 - }, - "colorPlank_01_small_001": { - "x": 2097, - "y": 3393, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "colorPlank_01_small_color_001": { - "x": 1248, - "y": 3447, - "width": 50, - "height": 20, - "rotation": 90, - "spritesheet": 1 - }, - "colorSpike_01_001": { - "x": 3704, - "y": 2370, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "colorSpike_01_color_001": { - "x": 3377, - "y": 2298, - "width": 104, - "height": 104, - "rotation": 0, - "spritesheet": 1 - }, - "colorSpike_02_001": { - "x": 2827, - "y": 3063, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "colorSpike_02_color_001": { - "x": 4051, - "y": 2710, - "width": 92, - "height": 44, - "rotation": 90, - "spritesheet": 1 - }, - "colorSpike_03_001": { - "x": 703, - "y": 3130, - "width": 80, - "height": 76, - "rotation": 90, - "spritesheet": 1 - }, - "colorSpike_03_color_001": { - "x": 723, - "y": 1772, - "width": 66, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "colorSpike_04_001": { - "x": 2931, - "y": 1713, - "width": 50, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "colorSpike_04_color_001": { - "x": 3091, - "y": 2593, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "colorSquare_01_small_001": { - "x": 1395, - "y": 3433, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "colorSquare_01_small_color_001": { - "x": 2749, - "y": 3357, - "width": 50, - "height": 50, - "rotation": 0, - "spritesheet": 1 - }, - "dA_blackSludge_01_001": { - "x": 4055, - "y": 2116, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "dA_blackSludge_02_001": { - "x": 427, - "y": 3571, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "d_02_chain_01_001": { - "x": 1, - "y": 854, - "width": 108, - "height": 262, - "rotation": 90, - "spritesheet": 1 - }, - "d_02_chain_02_001": { - "x": 2183, - "y": 535, - "width": 108, - "height": 152, - "rotation": 0, - "spritesheet": 1 - }, - "d_03_chain_01_001": { - "x": 3893, - "y": 3662, - "width": 40, - "height": 84, - "rotation": 90, - "spritesheet": 1 - }, - "d_03_chain_02_001": { - "x": 431, - "y": 2079, - "width": 94, - "height": 50, - "rotation": 90, - "spritesheet": 1 - }, - "d_animLoading_01_001": { - "x": 1333, - "y": 3473, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_002": { - "x": 1270, - "y": 3503, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_003": { - "x": 2103, - "y": 3143, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_004": { - "x": 1981, - "y": 3199, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_005": { - "x": 1859, - "y": 3251, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_006": { - "x": 1793, - "y": 3295, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_001": { - "x": 1695, - "y": 3345, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_002": { - "x": 1633, - "y": 3387, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_003": { - "x": 1507, - "y": 3413, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_004": { - "x": 1395, - "y": 3495, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_005": { - "x": 1332, - "y": 3535, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_01_color_006": { - "x": 1270, - "y": 3565, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_001": { - "x": 3252, - "y": 2819, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_002": { - "x": 2714, - "y": 2841, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_003": { - "x": 2836, - "y": 2883, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_004": { - "x": 2584, - "y": 2869, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_005": { - "x": 2461, - "y": 2883, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_006": { - "x": 2241, - "y": 2951, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_007": { - "x": 2117, - "y": 2997, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_001": { - "x": 1993, - "y": 3013, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_002": { - "x": 2239, - "y": 3013, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_003": { - "x": 2115, - "y": 3059, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_004": { - "x": 2706, - "y": 2903, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_005": { - "x": 2583, - "y": 2931, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_006": { - "x": 2461, - "y": 2945, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animLoading_02_color_007": { - "x": 3468, - "y": 2905, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_001": { - "x": 3029, - "y": 3283, - "width": 32, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_002": { - "x": 2451, - "y": 3301, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_003": { - "x": 2513, - "y": 3301, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_004": { - "x": 2693, - "y": 3247, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_005": { - "x": 3029, - "y": 3315, - "width": 32, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_006": { - "x": 985, - "y": 3383, - "width": 34, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_007": { - "x": 3147, - "y": 3293, - "width": 32, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animSquare_01_008": { - "x": 985, - "y": 3383, - "width": 34, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_animWave_01_001": { - "x": 1556, - "y": 933, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_002": { - "x": 1556, - "y": 1055, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_003": { - "x": 1555, - "y": 1177, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_006": { - "x": 1554, - "y": 1299, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_007": { - "x": 1553, - "y": 1421, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_008": { - "x": 1553, - "y": 1543, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_01_base_001": { - "x": 725, - "y": 1528, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_001": { - "x": 1552, - "y": 1665, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_002": { - "x": 1551, - "y": 1787, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_003": { - "x": 1551, - "y": 1909, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_004": { - "x": 2385, - "y": 1601, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_005": { - "x": 1551, - "y": 2031, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_006": { - "x": 2384, - "y": 1723, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_02_base_001": { - "x": 725, - "y": 1650, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_001": { - "x": 1550, - "y": 2153, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_002": { - "x": 2383, - "y": 1845, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_003": { - "x": 1549, - "y": 2275, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_004": { - "x": 1549, - "y": 2397, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_005": { - "x": 3826, - "y": 2156, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_006": { - "x": 3826, - "y": 2278, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_animWave_03_base_001": { - "x": 2429, - "y": 1215, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_arrow_01_001": { - "x": 2777, - "y": 729, - "width": 186, - "height": 134, - "rotation": 0, - "spritesheet": 1 - }, - "d_arrow_02_001": { - "x": 319, - "y": 743, - "width": 114, - "height": 176, - "rotation": 90, - "spritesheet": 1 - }, - "d_arrow_03_001": { - "x": 311, - "y": 957, - "width": 88, - "height": 176, - "rotation": 90, - "spritesheet": 1 - }, - "d_artCloud_01_001": { - "x": 2293, - "y": 1, - "width": 242, - "height": 138, - "rotation": 0, - "spritesheet": 1 - }, - "d_artCloud_02_001": { - "x": 1, - "y": 297, - "width": 310, - "height": 164, - "rotation": 0, - "spritesheet": 1 - }, - "d_artCloud_03_001": { - "x": 1925, - "y": 605, - "width": 144, - "height": 94, - "rotation": 90, - "spritesheet": 1 - }, - "d_art_01_001": { - "x": 3137, - "y": 1147, - "width": 56, - "height": 124, - "rotation": 90, - "spritesheet": 1 - }, - "d_art_02_001": { - "x": 2493, - "y": 475, - "width": 56, - "height": 196, - "rotation": 90, - "spritesheet": 1 - }, - "d_ball_01_001": { - "x": 3932, - "y": 2336, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_02_001": { - "x": 3932, - "y": 2458, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_03_001": { - "x": 1655, - "y": 2449, - "width": 120, - "height": 100, - "rotation": 90, - "spritesheet": 1 - }, - "d_ball_04_001": { - "x": 2611, - "y": 1867, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_05_001": { - "x": 1901, - "y": 1591, - "width": 120, - "height": 114, - "rotation": 90, - "spritesheet": 1 - }, - "d_ball_06_001": { - "x": 1905, - "y": 1115, - "width": 112, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_07_001": { - "x": 123, - "y": 2897, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_08_001": { - "x": 2485, - "y": 1975, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_ball_09_001": { - "x": 3826, - "y": 2400, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_bar_01_001": { - "x": 2594, - "y": 2691, - "width": 120, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_bar_02_001": { - "x": 1184, - "y": 3571, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_bar_03_001": { - "x": 2249, - "y": 2165, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_bar_04_001": { - "x": 2127, - "y": 2251, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_bar_07_001": { - "x": 2005, - "y": 2271, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece01_001": { - "x": 1102, - "y": 3585, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece02_001": { - "x": 1020, - "y": 3601, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece03_001": { - "x": 1521, - "y": 3055, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece04_001": { - "x": 1737, - "y": 3047, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece05_001": { - "x": 1184, - "y": 3633, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece06_001": { - "x": 1882, - "y": 2323, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece07_001": { - "x": 1758, - "y": 2377, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece08_001": { - "x": 1399, - "y": 2687, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece09_001": { - "x": 1859, - "y": 3065, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece10_001": { - "x": 1102, - "y": 3647, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece11_001": { - "x": 1277, - "y": 2777, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece12_001": { - "x": 1981, - "y": 3075, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_block04_piece13_001": { - "x": 1019, - "y": 3663, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_brick_01_001": { - "x": 1, - "y": 9, - "width": 498, - "height": 158, - "rotation": 0, - "spritesheet": 1 - }, - "d_brick_02_001": { - "x": 1423, - "y": 9, - "width": 344, - "height": 134, - "rotation": 0, - "spritesheet": 1 - }, - "d_brick_03_001": { - "x": 3989, - "y": 1, - "width": 222, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "d_cartwheel_01_001": { - "x": 123, - "y": 3009, - "width": 109, - "height": 109, - "rotation": 0, - "spritesheet": 1 - }, - "d_cartwheel_02_001": { - "x": 3709, - "y": 1346, - "width": 145, - "height": 144, - "rotation": 0, - "spritesheet": 1 - }, - "d_cartwheel_03_001": { - "x": 123, - "y": 3474, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "d_chain_02_001": { - "x": 1203, - "y": 735, - "width": 78, - "height": 136, - "rotation": 0, - "spritesheet": 1 - }, - "d_circle_01_001": { - "x": 3263, - "y": 451, - "width": 200, - "height": 200, - "rotation": 0, - "spritesheet": 1 - }, - "d_circle_02_001": { - "x": 3489, - "y": 453, - "width": 200, - "height": 200, - "rotation": 0, - "spritesheet": 1 - }, - "d_cloud_01_001": { - "x": 501, - "y": 9, - "width": 460, - "height": 154, - "rotation": 0, - "spritesheet": 1 - }, - "d_cloud_02_001": { - "x": 1423, - "y": 315, - "width": 320, - "height": 128, - "rotation": 0, - "spritesheet": 1 - }, - "d_cloud_03_001": { - "x": 1, - "y": 169, - "width": 316, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "d_cloud_04_001": { - "x": 963, - "y": 9, - "width": 458, - "height": 176, - "rotation": 0, - "spritesheet": 1 - }, - "d_cloud_05_001": { - "x": 3263, - "y": 1203, - "width": 152, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "d_cogwheel_01_001": { - "x": 1779, - "y": 707, - "width": 142, - "height": 142, - "rotation": 0, - "spritesheet": 1 - }, - "d_cogwheel_02_001": { - "x": 3489, - "y": 237, - "width": 214, - "height": 218, - "rotation": 90, - "spritesheet": 1 - }, - "d_cogwheel_03_001": { - "x": 3489, - "y": 1201, - "width": 150, - "height": 150, - "rotation": 0, - "spritesheet": 1 - }, - "d_cogwheel_04_001": { - "x": 3831, - "y": 1812, - "width": 100, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "d_cross_01_001": { - "x": 319, - "y": 565, - "width": 176, - "height": 176, - "rotation": 0, - "spritesheet": 1 - }, - "d_exmark_01_001": { - "x": 3263, - "y": 653, - "width": 56, - "height": 186, - "rotation": 90, - "spritesheet": 1 - }, - "d_flashRing_01_001": { - "x": 3263, - "y": 123, - "width": 118, - "height": 224, - "rotation": 90, - "spritesheet": 1 - }, - "d_flashRing_02_001": { - "x": 319, - "y": 275, - "width": 64, - "height": 178, - "rotation": 90, - "spritesheet": 1 - }, - "d_flashRing_03_001": { - "x": 2157, - "y": 1183, - "width": 26, - "height": 126, - "rotation": 90, - "spritesheet": 1 - }, - "d_flower01_01_001": { - "x": 721, - "y": 2394, - "width": 66, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_flower01_01_color_001": { - "x": 3987, - "y": 3484, - "width": 44, - "height": 44, - "rotation": 0, - "spritesheet": 1 - }, - "d_flower01_01_shine_001": { - "x": 955, - "y": 3637, - "width": 22, - "height": 20, - "rotation": 90, - "spritesheet": 1 - }, - "d_geometric_01_001": { - "x": 1033, - "y": 991, - "width": 163, - "height": 142, - "rotation": 0, - "spritesheet": 1 - }, - "d_geometric_02_001": { - "x": 793, - "y": 337, - "width": 194, - "height": 168, - "rotation": 90, - "spritesheet": 1 - }, - "d_geometric_03_001": { - "x": 1665, - "y": 445, - "width": 90, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_01_001": { - "x": 3856, - "y": 1410, - "width": 120, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_02_001": { - "x": 1277, - "y": 3237, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_03_001": { - "x": 2733, - "y": 1867, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_04_001": { - "x": 3193, - "y": 3159, - "width": 56, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_05_001": { - "x": 3095, - "y": 2293, - "width": 36, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_06_001": { - "x": 700, - "y": 3376, - "width": 60, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_b_02_001": { - "x": 3063, - "y": 3293, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_b_03_001": { - "x": 887, - "y": 3639, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_b_04_001": { - "x": 385, - "y": 3797, - "width": 28, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_b_05_001": { - "x": 1082, - "y": 3599, - "width": 18, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_b_06_001": { - "x": 427, - "y": 3633, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_c_01_001": { - "x": 605, - "y": 1360, - "width": 120, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_c_02_001": { - "x": 123, - "y": 1605, - "width": 118, - "height": 118, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_c_03_001": { - "x": 2979, - "y": 1967, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_gradient_c_04_001": { - "x": 911, - "y": 1545, - "width": 84, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_c_05_001": { - "x": 605, - "y": 1602, - "width": 54, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "d_gradient_c_06_001": { - "x": 911, - "y": 1631, - "width": 60, - "height": 118, - "rotation": 90, - "spritesheet": 1 - }, - "d_grassArt_01_001": { - "x": 498, - "y": 431, - "width": 278, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "d_grassArt_02_001": { - "x": 241, - "y": 1901, - "width": 116, - "height": 66, - "rotation": 90, - "spritesheet": 1 - }, - "d_grassArt_03_001": { - "x": 711, - "y": 3048, - "width": 80, - "height": 68, - "rotation": 90, - "spritesheet": 1 - }, - "d_grassArt_04_001": { - "x": 1799, - "y": 3241, - "width": 58, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "d_grassDetail_01_001": { - "x": 1920, - "y": 991, - "width": 98, - "height": 122, - "rotation": 0, - "spritesheet": 1 - }, - "d_grassDetail_02_001": { - "x": 723, - "y": 2028, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "d_grassDetail_03_001": { - "x": 551, - "y": 3598, - "width": 32, - "height": 44, - "rotation": 90, - "spritesheet": 1 - }, - "d_grass_01_001": { - "x": 2165, - "y": 3199, - "width": 54, - "height": 56, - "rotation": 90, - "spritesheet": 1 - }, - "d_grass_02_001": { - "x": 4061, - "y": 3718, - "width": 44, - "height": 34, - "rotation": 90, - "spritesheet": 1 - }, - "d_grass_03_001": { - "x": 1246, - "y": 3571, - "width": 22, - "height": 24, - "rotation": 0, - "spritesheet": 1 - }, - "d_grass_04_001": { - "x": 2755, - "y": 3247, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "d_grass_05_001": { - "x": 1196, - "y": 1555, - "width": 100, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "d_heart01_001": { - "x": 3608, - "y": 2101, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 1 - }, - "d_heart01_color_001": { - "x": 4048, - "y": 2866, - "width": 84, - "height": 46, - "rotation": 90, - "spritesheet": 1 - }, - "d_heart01_match_001": { - "x": 1655, - "y": 2571, - "width": 100, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "d_heart01_match_color_001": { - "x": 3805, - "y": 3410, - "width": 90, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_key01_001": { - "x": 2462, - "y": 2797, - "width": 120, - "height": 84, - "rotation": 0, - "spritesheet": 1 - }, - "d_key01_color_001": { - "x": 717, - "y": 2676, - "width": 110, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_keyHole01_001": { - "x": 2401, - "y": 1479, - "width": 88, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_keyHole01_color_001": { - "x": 241, - "y": 2019, - "width": 66, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "d_largeSquare_01_001": { - "x": 3709, - "y": 1184, - "width": 160, - "height": 160, - "rotation": 0, - "spritesheet": 1 - }, - "d_largeSquare_02_001": { - "x": 2021, - "y": 535, - "width": 160, - "height": 160, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_01_001": { - "x": 431, - "y": 1475, - "width": 50, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_02_001": { - "x": 3463, - "y": 3349, - "width": 86, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_03_001": { - "x": 1997, - "y": 2853, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_04_001": { - "x": 3133, - "y": 2041, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_05_001": { - "x": 431, - "y": 2263, - "width": 50, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_01_001": { - "x": 1141, - "y": 2665, - "width": 52, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_01_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_02_001": { - "x": 3589, - "y": 3347, - "width": 88, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_02_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_03_001": { - "x": 2470, - "y": 2707, - "width": 120, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_03_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_04_001": { - "x": 3255, - "y": 2087, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_04_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_05_001": { - "x": 3805, - "y": 3528, - "width": 52, - "height": 88, - "rotation": 90, - "spritesheet": 1 - }, - "d_link_b_05_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_b_06_001": { - "x": 3691, - "y": 603, - "width": 16, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_01_001": { - "x": 3071, - "y": 3127, - "width": 52, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "d_link_c_01_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_02_001": { - "x": 3897, - "y": 3462, - "width": 88, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_02_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_03_001": { - "x": 2245, - "y": 2775, - "width": 120, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_03_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_04_001": { - "x": 3485, - "y": 2295, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_04_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_c_05_001": { - "x": 3895, - "y": 3552, - "width": 52, - "height": 88, - "rotation": 90, - "spritesheet": 1 - }, - "d_link_c_05_color_001": { - "x": 1481, - "y": 3247, - "width": 36, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_01_001": { - "x": 2855, - "y": 1969, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_01_color_001": { - "x": 739, - "y": 3730, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_02_001": { - "x": 363, - "y": 2207, - "width": 66, - "height": 66, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_02_color_001": { - "x": 739, - "y": 3730, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_03_001": { - "x": 241, - "y": 1779, - "width": 120, - "height": 66, - "rotation": 90, - "spritesheet": 1 - }, - "d_link_d_03_color_001": { - "x": 739, - "y": 3730, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_04_001": { - "x": 1769, - "y": 737, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "d_link_d_04_color_001": { - "x": 739, - "y": 3730, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_05_001": { - "x": 2147, - "y": 1247, - "width": 8, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "d_link_d_05_color_001": { - "x": 739, - "y": 3730, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "d_pickupCircle_01_001": { - "x": 3898, - "y": 3282, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "d_pickupCircle_02_001": { - "x": 3683, - "y": 3254, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "d_pillar_01_001": { - "x": 1779, - "y": 169, - "width": 190, - "height": 240, - "rotation": 90, - "spritesheet": 1 - }, - "d_pillar_02_001": { - "x": 3937, - "y": 1070, - "width": 144, - "height": 154, - "rotation": 90, - "spritesheet": 1 - }, - "d_pillar_03_001": { - "x": 3830, - "y": 1914, - "width": 102, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "d_pit06wave_01_001": { - "x": 1549, - "y": 2839, - "width": 120, - "height": 98, - "rotation": 90, - "spritesheet": 1 - }, - "d_pit06wave_02_001": { - "x": 1195, - "y": 1657, - "width": 96, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "d_pixelArt01_001_001": { - "x": 3082, - "y": 2835, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_pixelArt01_002_001": { - "x": 3701, - "y": 2492, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_pixelArt01_003_001": { - "x": 3147, - "y": 3325, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_pixelArt01_004_001": { - "x": 1195, - "y": 2195, - "width": 80, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_pixelArt01_005_001": { - "x": 3931, - "y": 2580, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_pixelArt01_006_001": { - "x": 3929, - "y": 2702, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_potion01_001": { - "x": 3608, - "y": 2197, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 1 - }, - "d_potion01_color_001": { - "x": 717, - "y": 2788, - "width": 62, - "height": 84, - "rotation": 0, - "spritesheet": 1 - }, - "d_potion01_match_001": { - "x": 1657, - "y": 1881, - "width": 102, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "d_potion01_match_color_001": { - "x": 3681, - "y": 3346, - "width": 70, - "height": 90, - "rotation": 90, - "spritesheet": 1 - }, - "d_qmark_01_001": { - "x": 1285, - "y": 457, - "width": 136, - "height": 188, - "rotation": 0, - "spritesheet": 1 - }, - "d_rainbow_01_001": { - "x": 1283, - "y": 783, - "width": 126, - "height": 136, - "rotation": 90, - "spritesheet": 1 - }, - "d_rainbow_02_001": { - "x": 1285, - "y": 187, - "width": 136, - "height": 268, - "rotation": 0, - "spritesheet": 1 - }, - "d_ringSeg_01_001": { - "x": 3489, - "y": 655, - "width": 200, - "height": 200, - "rotation": 0, - "spritesheet": 1 - }, - "d_ringSeg_02_001": { - "x": 2983, - "y": 927, - "width": 152, - "height": 152, - "rotation": 0, - "spritesheet": 1 - }, - "d_ringSeg_03_001": { - "x": 1659, - "y": 1463, - "width": 104, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "d_ringSeg_04_001": { - "x": 2693, - "y": 3279, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "d_ringSpiral_01_001": { - "x": 2983, - "y": 779, - "width": 170, - "height": 146, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingBall_01_001": { - "x": 1, - "y": 518, - "width": 100, - "height": 270, - "rotation": 90, - "spritesheet": 1 - }, - "d_rotatingBall_02_001": { - "x": 3709, - "y": 351, - "width": 86, - "height": 216, - "rotation": 90, - "spritesheet": 1 - }, - "d_rotatingBall_03_001": { - "x": 3187, - "y": 490, - "width": 74, - "height": 160, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingBall_04_001": { - "x": 3816, - "y": 2822, - "width": 54, - "height": 108, - "rotation": 90, - "spritesheet": 1 - }, - "d_rotatingLine_01_001": { - "x": 751, - "y": 725, - "width": 24, - "height": 252, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingLine_02_001": { - "x": 2983, - "y": 451, - "width": 20, - "height": 204, - "rotation": 90, - "spritesheet": 1 - }, - "d_rotatingLine_03_001": { - "x": 3691, - "y": 453, - "width": 16, - "height": 148, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingLine_04_001": { - "x": 777, - "y": 769, - "width": 12, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingSquare_01_001": { - "x": 197, - "y": 3774, - "width": 24, - "height": 26, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingSquare_02_001": { - "x": 823, - "y": 3633, - "width": 20, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingSquare_03_001": { - "x": 3137, - "y": 955, - "width": 16, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "d_rotatingSquare_04_001": { - "x": 3173, - "y": 591, - "width": 12, - "height": 14, - "rotation": 0, - "spritesheet": 1 - }, - "d_roundCloud_01_001": { - "x": 2493, - "y": 533, - "width": 190, - "height": 190, - "rotation": 0, - "spritesheet": 1 - }, - "d_roundCloud_02_001": { - "x": 963, - "y": 351, - "width": 228, - "height": 254, - "rotation": 90, - "spritesheet": 1 - }, - "d_roundCloud_03_001": { - "x": 3935, - "y": 1584, - "width": 144, - "height": 140, - "rotation": 0, - "spritesheet": 1 - }, - "d_scaleFadeRing_01_001": { - "x": 2977, - "y": 2089, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_scaleFadeRing_02_001": { - "x": 3133, - "y": 2163, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_scaleFadeRing_03_001": { - "x": 887, - "y": 3701, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_scaleFadeRing_04_001": { - "x": 761, - "y": 3695, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_01_001": { - "x": 1923, - "y": 873, - "width": 116, - "height": 96, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_01_color_001": { - "x": 2969, - "y": 599, - "width": 10, - "height": 82, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_01_color_02_001": { - "x": 1767, - "y": 981, - "width": 100, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_img_01_001": { - "x": 1127, - "y": 3071, - "width": 62, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_img_02_001": { - "x": 1799, - "y": 3109, - "width": 70, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_img_03_001": { - "x": 2933, - "y": 1461, - "width": 78, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_img_04_001": { - "x": 1145, - "y": 2455, - "width": 78, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_img_05_001": { - "x": 3559, - "y": 3329, - "width": 28, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_img_06_001": { - "x": 4033, - "y": 3572, - "width": 42, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_paint_01_001": { - "x": 270, - "y": 1078, - "width": 38, - "height": 36, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_paint_02_001": { - "x": 1082, - "y": 3641, - "width": 40, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_paint_03_001": { - "x": 739, - "y": 3684, - "width": 20, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_pole_001": { - "x": 2493, - "y": 877, - "width": 32, - "height": 160, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_pole_color_001": { - "x": 3927, - "y": 359, - "width": 8, - "height": 150, - "rotation": 0, - "spritesheet": 1 - }, - "d_sign_tile_01_001": { - "x": 4054, - "y": 2238, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "d_sign_tile_01_color_001": { - "x": 3823, - "y": 2570, - "width": 106, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "d_skull01_001": { - "x": 601, - "y": 2978, - "width": 104, - "height": 108, - "rotation": 90, - "spritesheet": 1 - }, - "d_skull01_color_001": { - "x": 1921, - "y": 3243, - "width": 58, - "height": 18, - "rotation": 0, - "spritesheet": 1 - }, - "d_skull01_match_001": { - "x": 1660, - "y": 1357, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 1 - }, - "d_skull01_match_color_001": { - "x": 711, - "y": 2966, - "width": 68, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "d_skull_01_001": { - "x": 241, - "y": 2127, - "width": 78, - "height": 66, - "rotation": 90, - "spritesheet": 1 - }, - "d_skull_02_001": { - "x": 1127, - "y": 2997, - "width": 72, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_small_ball_01_001": { - "x": 1757, - "y": 3389, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "d_small_ball_02_001": { - "x": 1757, - "y": 3423, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "d_small_ball_03_001": { - "x": 1757, - "y": 3457, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "d_small_ball_04_001": { - "x": 2969, - "y": 549, - "width": 32, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "d_small_ball_05_001": { - "x": 1775, - "y": 3221, - "width": 22, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "d_smallbar_01_001": { - "x": 2237, - "y": 3075, - "width": 60, - "height": 120, - "rotation": 90, - "spritesheet": 1 - }, - "d_smallbar_02_001": { - "x": 2359, - "y": 3115, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "d_smallbar_03_001": { - "x": 1399, - "y": 3053, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "d_smallbar_04_001": { - "x": 3255, - "y": 2209, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_smallbar_05_001": { - "x": 4033, - "y": 3520, - "width": 50, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_spikeWave_01_001": { - "x": 1664, - "y": 777, - "width": 120, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "d_spikeWave_02_001": { - "x": 1277, - "y": 3143, - "width": 120, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikeWave_03_001": { - "x": 1656, - "y": 2259, - "width": 60, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "d_spikeart_01_001": { - "x": 2493, - "y": 827, - "width": 48, - "height": 160, - "rotation": 90, - "spritesheet": 1 - }, - "d_spikeart_02_001": { - "x": 726, - "y": 1284, - "width": 62, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikeart_03_001": { - "x": 3551, - "y": 3393, - "width": 36, - "height": 78, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikes_01_001": { - "x": 1779, - "y": 1, - "width": 512, - "height": 166, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikes_02_001": { - "x": 501, - "y": 165, - "width": 416, - "height": 146, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikes_03_001": { - "x": 499, - "y": 313, - "width": 292, - "height": 116, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikes_04_001": { - "x": 1033, - "y": 703, - "width": 168, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikewheel_01_001": { - "x": 2021, - "y": 829, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 1 - }, - "d_spikewheel_02_001": { - "x": 1033, - "y": 801, - "width": 188, - "height": 164, - "rotation": 90, - "spritesheet": 1 - }, - "d_spikewheel_03_001": { - "x": 271, - "y": 920, - "width": 38, - "height": 156, - "rotation": 0, - "spritesheet": 1 - }, - "d_spiral_01_001": { - "x": 3263, - "y": 1055, - "width": 152, - "height": 146, - "rotation": 0, - "spritesheet": 1 - }, - "d_spiral_02_001": { - "x": 1904, - "y": 1481, - "width": 108, - "height": 112, - "rotation": 90, - "spritesheet": 1 - }, - "d_spiral_03_001": { - "x": 123, - "y": 3574, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "d_spiral_04_001": { - "x": 3185, - "y": 3241, - "width": 62, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_01_001": { - "x": 2607, - "y": 1989, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_02_001": { - "x": 2482, - "y": 2097, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_03_01_001": { - "x": 2729, - "y": 1989, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_03_02_001": { - "x": 3252, - "y": 2881, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_03_03_001": { - "x": 823, - "y": 3707, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_04_001": { - "x": 2851, - "y": 2091, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_05_001": { - "x": 2973, - "y": 2211, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_square_20_01_001": { - "x": 920, - "y": 862, - "width": 10, - "height": 10, - "rotation": 0, - "spritesheet": 1 - }, - "d_swirve_01_001": { - "x": 2428, - "y": 1337, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_swirve_02_001": { - "x": 3590, - "y": 2999, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "d_swirve_03_001": { - "x": 721, - "y": 2432, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "d_swirve_04_001": { - "x": 3608, - "y": 2293, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn2_01_001": { - "x": 33, - "y": 359, - "width": 28, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn2_02_001": { - "x": 613, - "y": 298, - "width": 18, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn2_03_001": { - "x": 844, - "y": 330, - "width": 21, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn2_04_001": { - "x": 570, - "y": 842, - "width": 18, - "height": 20, - "rotation": 90, - "spritesheet": 1 - }, - "d_thorn2_05_001": { - "x": 659, - "y": 784, - "width": 13, - "height": 18, - "rotation": 90, - "spritesheet": 1 - }, - "d_thorn2_06_001": { - "x": 867, - "y": 220, - "width": 47, - "height": 47, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn_01_001": { - "x": 123, - "y": 2775, - "width": 110, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn_02_001": { - "x": 3637, - "y": 1391, - "width": 70, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn_03_001": { - "x": 1191, - "y": 3129, - "width": 84, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_thorn_04_001": { - "x": 345, - "y": 3653, - "width": 70, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "d_thorn_05_001": { - "x": 1397, - "y": 3311, - "width": 50, - "height": 70, - "rotation": 90, - "spritesheet": 1 - }, - "d_thorn_06_001": { - "x": 2983, - "y": 591, - "width": 188, - "height": 186, - "rotation": 0, - "spritesheet": 1 - }, - "d_waveBG_001": { - "x": 3133, - "y": 2285, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "d_wave_01_001": { - "x": 1549, - "y": 2519, - "width": 120, - "height": 104, - "rotation": 90, - "spritesheet": 1 - }, - "d_wave_02_001": { - "x": 1923, - "y": 751, - "width": 120, - "height": 96, - "rotation": 90, - "spritesheet": 1 - }, - "d_wave_03_001": { - "x": 1025, - "y": 3171, - "width": 120, - "height": 98, - "rotation": 90, - "spritesheet": 1 - }, - "d_wheel_01_001": { - "x": 963, - "y": 187, - "width": 162, - "height": 320, - "rotation": 90, - "spritesheet": 1 - }, - "d_wheel_02_001": { - "x": 2987, - "y": 245, - "width": 204, - "height": 204, - "rotation": 0, - "spritesheet": 1 - }, - "d_wheel_03_001": { - "x": 2373, - "y": 1967, - "width": 110, - "height": 108, - "rotation": 0, - "spritesheet": 1 - }, - "d_whiteBlock_01_001": { - "x": 1102, - "y": 3523, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "d_whiteBlock_02_001": { - "x": 511, - "y": 3762, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_01_001": { - "x": 3071, - "y": 3073, - "width": 120, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_01_002": { - "x": 431, - "y": 1719, - "width": 120, - "height": 50, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_01_003": { - "x": 2933, - "y": 1241, - "width": 120, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_01_color_001": { - "x": 2245, - "y": 2865, - "width": 120, - "height": 84, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_01_color_002": { - "x": 1199, - "y": 873, - "width": 120, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_01_color_003": { - "x": 3855, - "y": 1532, - "width": 120, - "height": 78, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_02_001": { - "x": 3855, - "y": 1736, - "width": 78, - "height": 74, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_02_002": { - "x": 1195, - "y": 1837, - "width": 78, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_02_color_001": { - "x": 3590, - "y": 3093, - "width": 92, - "height": 88, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_02_color_002": { - "x": 3897, - "y": 3374, - "width": 86, - "height": 90, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_03_001": { - "x": 721, - "y": 2352, - "width": 40, - "height": 66, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_03_002": { - "x": 1603, - "y": 3117, - "width": 36, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "d_zag_03_color_001": { - "x": 469, - "y": 3638, - "width": 70, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "d_zag_03_color_002": { - "x": 469, - "y": 3710, - "width": 50, - "height": 76, - "rotation": 90, - "spritesheet": 1 - }, - "darkblade_01_001": { - "x": 3263, - "y": 711, - "width": 170, - "height": 172, - "rotation": 90, - "spritesheet": 1 - }, - "darkblade_01_color_001": { - "x": 3589, - "y": 3437, - "width": 86, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "darkblade_02_001": { - "x": 497, - "y": 613, - "width": 218, - "height": 252, - "rotation": 90, - "spritesheet": 1 - }, - "darkblade_02_color_001": { - "x": 1271, - "y": 3401, - "width": 68, - "height": 68, - "rotation": 0, - "spritesheet": 1 - }, - "darkblade_03_001": { - "x": 310, - "y": 1129, - "width": 172, - "height": 172, - "rotation": 0, - "spritesheet": 1 - }, - "darkblade_03_color_001": { - "x": 2975, - "y": 3335, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "dashRing_01_001": { - "x": 2293, - "y": 897, - "width": 138, - "height": 138, - "rotation": 0, - "spritesheet": 1 - }, - "dashRing_02_001": { - "x": 2293, - "y": 1037, - "width": 138, - "height": 138, - "rotation": 0, - "spritesheet": 1 - }, - "dropRing_01_001": { - "x": 2161, - "y": 1051, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 1 - }, - "edit_eParticleBtn_001": { - "x": 1779, - "y": 605, - "width": 100, - "height": 144, - "rotation": 90, - "spritesheet": 1 - }, - "edit_eParticleBtn_color_001": { - "x": 3374, - "y": 3036, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "emptyFrame": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "fakeSpike_01_001": { - "x": 3255, - "y": 2331, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "fakeSpike_02_001": { - "x": 2705, - "y": 3083, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "fakeSpike_03_001": { - "x": 703, - "y": 3212, - "width": 80, - "height": 76, - "rotation": 90, - "spritesheet": 1 - }, - "fakeSpike_04_001": { - "x": 1145, - "y": 2613, - "width": 50, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "fireball_01_001": { - "x": 1657, - "y": 2085, - "width": 102, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_01_color_001": { - "x": 3981, - "y": 3616, - "width": 84, - "height": 84, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_02_001": { - "x": 2594, - "y": 2599, - "width": 120, - "height": 90, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_02_002": { - "x": 3489, - "y": 1353, - "width": 146, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_02_003": { - "x": 311, - "y": 1047, - "width": 176, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_02_color_001": { - "x": 1196, - "y": 1451, - "width": 102, - "height": 82, - "rotation": 90, - "spritesheet": 1 - }, - "fireball_02_color_002": { - "x": 1421, - "y": 845, - "width": 128, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "fireball_02_color_003": { - "x": 3937, - "y": 700, - "width": 156, - "height": 76, - "rotation": 0, - "spritesheet": 1 - }, - "firepillar_01_001": { - "x": 1005, - "y": 674, - "width": 18, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "firepillar_01_002": { - "x": 499, - "y": 727, - "width": 18, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "firepillar_01_color_001": { - "x": 1, - "y": 974, - "width": 14, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "firepillar_01_color_002": { - "x": 17, - "y": 942, - "width": 14, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "floorLine_001": { - "x": 1, - "y": 1, - "width": 1776, - "height": 6, - "rotation": 0, - "spritesheet": 1 - }, - "gradientBar": { - "x": 2165, - "y": 807, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 1 - }, - "gravJumpRing_01_001": { - "x": 912, - "y": 1313, - "width": 118, - "height": 118, - "rotation": 0, - "spritesheet": 1 - }, - "gravbump_01_001": { - "x": 2402, - "y": 1311, - "width": 100, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "gravring_01_001": { - "x": 3483, - "y": 2417, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "gridLine01_001": { - "x": 313, - "y": 663, - "width": 120, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "gridLine02_001": { - "x": 265, - "y": 854, - "width": 120, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "gridLine03_001": { - "x": 312, - "y": 785, - "width": 60, - "height": 4, - "rotation": 90, - "spritesheet": 1 - }, - "gridLine04_001": { - "x": 723, - "y": 1840, - "width": 64, - "height": 64, - "rotation": 0, - "spritesheet": 1 - }, - "iceSpike_01_001": { - "x": 1413, - "y": 927, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "iceSpike_02_001": { - "x": 717, - "y": 2554, - "width": 120, - "height": 62, - "rotation": 90, - "spritesheet": 1 - }, - "iceSpike_03_001": { - "x": 1195, - "y": 1991, - "width": 81, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "invis_plank_01_001": { - "x": 3653, - "y": 1146, - "width": 121, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "invis_plank_01_small_001": { - "x": 1270, - "y": 3471, - "width": 61, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "invis_spike_01_001": { - "x": 3699, - "y": 2614, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "invis_spike_02_001": { - "x": 2455, - "y": 3069, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "invis_spike_03_001": { - "x": 702, - "y": 3294, - "width": 80, - "height": 76, - "rotation": 90, - "spritesheet": 1 - }, - "invis_spike_04_001": { - "x": 2930, - "y": 1765, - "width": 50, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "invis_square_01_001": { - "x": 1283, - "y": 973, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "invis_square_01_small_001": { - "x": 1185, - "y": 3447, - "width": 61, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "invis_triangle_02_001": { - "x": 2604, - "y": 2111, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "invis_triangle_04_001": { - "x": 3021, - "y": 1, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "invisibleOutline_01_001": { - "x": 3653, - "y": 1037, - "width": 107, - "height": 6, - "rotation": 90, - "spritesheet": 1 - }, - "invisibleOutline_02_001": { - "x": 1769, - "y": 459, - "width": 154, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "invisibleOutline_03_001": { - "x": 497, - "y": 603, - "width": 254, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "invisibleOutline_b_01_001": { - "x": 777, - "y": 871, - "width": 99, - "height": 12, - "rotation": 90, - "spritesheet": 1 - }, - "invisibleOutline_b_02_001": { - "x": 3921, - "y": 511, - "width": 151, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "invisibleOutline_b_03_001": { - "x": 1753, - "y": 145, - "width": 241, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_001": { - "x": 1889, - "y": 1253, - "width": 120, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_002": { - "x": 2103, - "y": 3121, - "width": 120, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_003": { - "x": 1523, - "y": 2017, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_004": { - "x": 3911, - "y": 786, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_005": { - "x": 753, - "y": 603, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_006": { - "x": 3911, - "y": 908, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_007": { - "x": 246, - "y": 995, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_008": { - "x": 2141, - "y": 1301, - "width": 120, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_001": { - "x": 1745, - "y": 437, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_002": { - "x": 2455, - "y": 917, - "width": 120, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_003": { - "x": 4057, - "y": 1804, - "width": 120, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_004": { - "x": 4054, - "y": 2360, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_005": { - "x": 4054, - "y": 2482, - "width": 120, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_006": { - "x": 3102, - "y": 1845, - "width": 120, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_color_001": { - "x": 3468, - "y": 3135, - "width": 120, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble02_color_002": { - "x": 2949, - "y": 3171, - "width": 120, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble02_color_003": { - "x": 1522, - "y": 2139, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_color_004": { - "x": 1521, - "y": 2261, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_color_005": { - "x": 1521, - "y": 2383, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble02_color_006": { - "x": 1521, - "y": 2505, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_001": { - "x": 2225, - "y": 3137, - "width": 120, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_002": { - "x": 2819, - "y": 3209, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_003": { - "x": 2949, - "y": 3117, - "width": 120, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_004": { - "x": 431, - "y": 1841, - "width": 120, - "height": 50, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_005": { - "x": 2827, - "y": 3119, - "width": 120, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_006": { - "x": 2577, - "y": 3111, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_007": { - "x": 2453, - "y": 3125, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_008": { - "x": 3684, - "y": 3102, - "width": 120, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_color_001": { - "x": 3684, - "y": 3132, - "width": 120, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_color_002": { - "x": 3071, - "y": 3181, - "width": 120, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_color_003": { - "x": 1135, - "y": 2787, - "width": 120, - "height": 58, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_color_004": { - "x": 3101, - "y": 1967, - "width": 120, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_color_005": { - "x": 2629, - "y": 985, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_color_006": { - "x": 3684, - "y": 3162, - "width": 120, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_bubble_color_007": { - "x": 1521, - "y": 2627, - "width": 120, - "height": 26, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_bubble_color_008": { - "x": 1529, - "y": 1163, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_color_001": { - "x": 3465, - "y": 451, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_color_002": { - "x": 3465, - "y": 573, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_color_003": { - "x": 3831, - "y": 1638, - "width": 120, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "lava_top_color_004": { - "x": 3467, - "y": 3233, - "width": 120, - "height": 22, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_color_005": { - "x": 3468, - "y": 3203, - "width": 120, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_color_006": { - "x": 2697, - "y": 3211, - "width": 120, - "height": 34, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_color_007": { - "x": 3468, - "y": 3169, - "width": 120, - "height": 32, - "rotation": 0, - "spritesheet": 1 - }, - "lava_top_color_008": { - "x": 1528, - "y": 1285, - "width": 120, - "height": 24, - "rotation": 90, - "spritesheet": 1 - }, - "lightBlade_01_001": { - "x": 2293, - "y": 673, - "width": 160, - "height": 160, - "rotation": 0, - "spritesheet": 1 - }, - "lightBlade_01_color_001": { - "x": 2983, - "y": 1081, - "width": 152, - "height": 152, - "rotation": 0, - "spritesheet": 1 - }, - "lightBlade_02_001": { - "x": 3263, - "y": 243, - "width": 206, - "height": 218, - "rotation": 90, - "spritesheet": 1 - }, - "lightBlade_02_color_001": { - "x": 2777, - "y": 353, - "width": 194, - "height": 204, - "rotation": 90, - "spritesheet": 1 - }, - "lightBlade_03_001": { - "x": 3936, - "y": 1438, - "width": 144, - "height": 144, - "rotation": 0, - "spritesheet": 1 - }, - "lightBlade_03_color_001": { - "x": 2493, - "y": 985, - "width": 134, - "height": 134, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_01_001": { - "x": 3486, - "y": 2051, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_01_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_02_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_01_02_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_03_001": { - "x": 3486, - "y": 2173, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_03_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_04_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_04_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_05_001": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_05_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_06_001": { - "x": 2481, - "y": 2219, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_06_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_07_001": { - "x": 2249, - "y": 2287, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_07_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_01_08_color_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_01_001": { - "x": 3486, - "y": 2051, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_01_color_001": { - "x": 2127, - "y": 2373, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_02_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_02_02_color_001": { - "x": 2004, - "y": 2393, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_03_001": { - "x": 3486, - "y": 2173, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_03_color_001": { - "x": 1880, - "y": 2445, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_04_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_04_color_001": { - "x": 1757, - "y": 2499, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_05_001": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_05_color_001": { - "x": 2726, - "y": 2111, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_06_001": { - "x": 2481, - "y": 2219, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_06_color_001": { - "x": 2848, - "y": 2213, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_07_001": { - "x": 2249, - "y": 2287, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_07_color_001": { - "x": 2970, - "y": 2333, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_02_08_001": { - "x": 1768, - "y": 859, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_02_08_color_001": { - "x": 3132, - "y": 2407, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_01_001": { - "x": 3486, - "y": 2051, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_01_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_02_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_03_02_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_03_001": { - "x": 3486, - "y": 2173, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_03_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_04_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_04_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_05_001": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_05_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_06_001": { - "x": 2481, - "y": 2219, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_06_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_07_001": { - "x": 2249, - "y": 2287, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_07_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_03_08_color_001": { - "x": 3254, - "y": 2453, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_04_02_001": { - "x": 1905, - "y": 1003, - "width": 80, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_04_05_color_001": { - "x": 3478, - "y": 2539, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_04_sideLine_001": { - "x": 3437, - "y": 733, - "width": 8, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_01_001": { - "x": 3486, - "y": 2051, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_01_color_001": { - "x": 3694, - "y": 2736, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_02_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "lightsquare_05_02_color_001": { - "x": 3926, - "y": 2824, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_03_001": { - "x": 3486, - "y": 2173, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_03_color_001": { - "x": 2603, - "y": 2233, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_04_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_04_color_001": { - "x": 2481, - "y": 2341, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_05_001": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_05_color_001": { - "x": 2481, - "y": 2341, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_06_001": { - "x": 2481, - "y": 2219, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_06_color_001": { - "x": 3694, - "y": 2736, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_07_001": { - "x": 2249, - "y": 2287, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_07_color_001": { - "x": 3694, - "y": 2736, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_08_color_001": { - "x": 3926, - "y": 2824, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_brick02_001": { - "x": 2958, - "y": 2885, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "lightsquare_05_brick03_001": { - "x": 2223, - "y": 3159, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_01_02_001": { - "x": 230, - "y": 601, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_01_02_color_001": { - "x": 2249, - "y": 2409, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_01_04_001": { - "x": 823, - "y": 33, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_01_04_color_001": { - "x": 3263, - "y": 1, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_02_02_001": { - "x": 230, - "y": 601, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_02_02_color_001": { - "x": 2126, - "y": 2495, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_02_04_001": { - "x": 823, - "y": 33, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_02_04_color_001": { - "x": 3505, - "y": 1, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_03_02_001": { - "x": 230, - "y": 601, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_03_02_color_001": { - "x": 2725, - "y": 2233, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_03_04_001": { - "x": 823, - "y": 33, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_03_04_color_001": { - "x": 3747, - "y": 1, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_04_02_001": { - "x": 558, - "y": 878, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_04_02_color_001": { - "x": 1658, - "y": 1673, - "width": 102, - "height": 102, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_04_04_001": { - "x": 758, - "y": 147, - "width": 50, - "height": 27, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_04_04_color_001": { - "x": 3489, - "y": 123, - "width": 222, - "height": 112, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_05_02_001": { - "x": 230, - "y": 601, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_05_02_color_001": { - "x": 2847, - "y": 2335, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_05_04_001": { - "x": 823, - "y": 33, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "lighttriangle_05_04_color_001": { - "x": 2779, - "y": 123, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block001_01_001": { - "x": 427, - "y": 3695, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block001_02_001": { - "x": 1353, - "y": 3349, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block001_03_001": { - "x": 2911, - "y": 3337, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block001_04_001": { - "x": 1189, - "y": 3251, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block001_05_001": { - "x": 601, - "y": 3084, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block002_01_001": { - "x": 1469, - "y": 3339, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block002_02_001": { - "x": 978, - "y": 3559, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block002_03_001": { - "x": 3105, - "y": 3293, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block002_04_001": { - "x": 1271, - "y": 3319, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block002_05_001": { - "x": 601, - "y": 3156, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block005_01_001": { - "x": 845, - "y": 3583, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block005_02_001": { - "x": 1591, - "y": 3283, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block005_03_001": { - "x": 3181, - "y": 3299, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block005_04_001": { - "x": 1025, - "y": 3293, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block005_05_001": { - "x": 2855, - "y": 1867, - "width": 100, - "height": 72, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block005b_01_001": { - "x": 1591, - "y": 3345, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block005b_02_001": { - "x": 1465, - "y": 3401, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block005b_03_001": { - "x": 3063, - "y": 3335, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block005b_04_001": { - "x": 1107, - "y": 3297, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block005b_05_001": { - "x": 1651, - "y": 2673, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_01_001": { - "x": 1457, - "y": 3463, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block007_01_color_001": { - "x": 977, - "y": 3621, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block007_02_001": { - "x": 845, - "y": 3645, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block007_02_color_001": { - "x": 3985, - "y": 3574, - "width": 44, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_03_001": { - "x": 3105, - "y": 3335, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_03_color_001": { - "x": 381, - "y": 3839, - "width": 28, - "height": 28, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_04_001": { - "x": 1127, - "y": 3135, - "width": 62, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_04_color_001": { - "x": 1125, - "y": 3199, - "width": 62, - "height": 62, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_05_001": { - "x": 223, - "y": 3815, - "width": 72, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block007_05_color_001": { - "x": 1725, - "y": 3109, - "width": 72, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block009_01_001": { - "x": 977, - "y": 3683, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block009_01b_001": { - "x": 1457, - "y": 3525, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block009_02_001": { - "x": 1456, - "y": 3587, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block009_03_001": { - "x": 3017, - "y": 3347, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block009_04_001": { - "x": 1189, - "y": 3333, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block009_04b_001": { - "x": 903, - "y": 3331, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block009_05_001": { - "x": 1549, - "y": 2743, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block009_05b_001": { - "x": 1025, - "y": 2949, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_01_001": { - "x": 1332, - "y": 3659, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_01_color_001": { - "x": 2285, - "y": 3159, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_01b_001": { - "x": 2285, - "y": 3201, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_01b_color_001": { - "x": 2223, - "y": 3221, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_02_001": { - "x": 2101, - "y": 3267, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_02_color_001": { - "x": 3092, - "y": 2429, - "width": 38, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_03_001": { - "x": 2953, - "y": 3377, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_03_color_001": { - "x": 1753, - "y": 388, - "width": 40, - "height": 14, - "rotation": 90, - "spritesheet": 1 - }, - "persp_block011_04_001": { - "x": 1021, - "y": 3375, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_04_color_001": { - "x": 1021, - "y": 3375, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_05_001": { - "x": 1025, - "y": 3023, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block011_05_color_001": { - "x": 1025, - "y": 3023, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block012_01_001": { - "x": 2101, - "y": 3309, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block012_02_001": { - "x": 1979, - "y": 3323, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block012_04_001": { - "x": 1103, - "y": 3379, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block012_05_001": { - "x": 1025, - "y": 3097, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_01_001": { - "x": 1979, - "y": 3365, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_02_001": { - "x": 1915, - "y": 3379, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_03_001": { - "x": 2911, - "y": 3379, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_04_001": { - "x": 1549, - "y": 2641, - "width": 100, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_05_001": { - "x": 2493, - "y": 725, - "width": 160, - "height": 100, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_06_001": { - "x": 1246, - "y": 3689, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_07_001": { - "x": 1164, - "y": 3695, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_08_001": { - "x": 2801, - "y": 3387, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_block013_09_001": { - "x": 3251, - "y": 3173, - "width": 120, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockb_01_001": { - "x": 1081, - "y": 3709, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockb_02_001": { - "x": 1019, - "y": 3725, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockb_03_001": { - "x": 2843, - "y": 3387, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockb_04_001": { - "x": 780, - "y": 3387, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockb_05_001": { - "x": 600, - "y": 3228, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockc_01_001": { - "x": 949, - "y": 3745, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockc_02_001": { - "x": 885, - "y": 3763, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockc_03_001": { - "x": 595, - "y": 3746, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockc_04_001": { - "x": 896, - "y": 3413, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockc_05_001": { - "x": 123, - "y": 3330, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockd_01_001": { - "x": 2347, - "y": 3209, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockd_02_001": { - "x": 2285, - "y": 3243, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockd_03_001": { - "x": 547, - "y": 3756, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockd_04_001": { - "x": 1020, - "y": 3457, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockd_05_001": { - "x": 123, - "y": 3402, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blocke_01_001": { - "x": 2409, - "y": 3209, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_blocke_02_001": { - "x": 2347, - "y": 3251, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blocke_03_001": { - "x": 469, - "y": 3762, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blocke_04_001": { - "x": 896, - "y": 3495, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blocke_05_001": { - "x": 2371, - "y": 2433, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockf_01_001": { - "x": 2219, - "y": 3263, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockf_02_001": { - "x": 2281, - "y": 3285, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockf_03_001": { - "x": 419, - "y": 3791, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockf_04_001": { - "x": 777, - "y": 3469, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockf_05_001": { - "x": 3815, - "y": 2878, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockg_01_001": { - "x": 2219, - "y": 3305, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockg_02_001": { - "x": 2099, - "y": 3351, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockg_03_001": { - "x": 461, - "y": 3804, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockg_04_001": { - "x": 599, - "y": 3500, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockg_05_001": { - "x": 3815, - "y": 2950, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockh_01_001": { - "x": 1977, - "y": 3407, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockh_02_001": { - "x": 1915, - "y": 3421, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockh_03_001": { - "x": 343, - "y": 3797, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockh_04_001": { - "x": 681, - "y": 3520, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_blockh_05_001": { - "x": 3375, - "y": 2776, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_01_001": { - "x": 1853, - "y": 3437, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_02_001": { - "x": 2451, - "y": 3217, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_03_001": { - "x": 297, - "y": 3819, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_04_001": { - "x": 763, - "y": 3551, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_05_001": { - "x": 3815, - "y": 3022, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock01_06_001": { - "x": 1145, - "y": 2535, - "width": 76, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "persp_lblock02_01_001": { - "x": 2513, - "y": 3217, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock02_02_001": { - "x": 2575, - "y": 3239, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock02_03_001": { - "x": 415, - "y": 3833, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock02_04_001": { - "x": 469, - "y": 3556, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock02_05_001": { - "x": 3815, - "y": 3094, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock03_01_001": { - "x": 2451, - "y": 3259, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock03_02_001": { - "x": 2409, - "y": 3271, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 1 - }, - "persp_lblock03_03_001": { - "x": 339, - "y": 3839, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock03_04_001": { - "x": 597, - "y": 3582, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock03_05_001": { - "x": 2371, - "y": 2505, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock04_01_001": { - "x": 2513, - "y": 3259, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock04_02_001": { - "x": 2575, - "y": 3281, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock04_03_001": { - "x": 297, - "y": 3861, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock04_04_001": { - "x": 679, - "y": 3602, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock04_05_001": { - "x": 2370, - "y": 2577, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock05_01_001": { - "x": 2343, - "y": 3293, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock05_02_001": { - "x": 2281, - "y": 3327, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock05_03_001": { - "x": 339, - "y": 3881, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock05_04_001": { - "x": 595, - "y": 3664, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "persp_lblock05_05_001": { - "x": 1651, - "y": 2747, - "width": 100, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_01_001": { - "x": 3251, - "y": 3215, - "width": 120, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_02_001": { - "x": 4082, - "y": 1560, - "width": 120, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "persp_outline_03_001": { - "x": 2147, - "y": 1185, - "width": 60, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "persp_outline_04_001": { - "x": 3204, - "y": 2893, - "width": 46, - "height": 46, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_05_001": { - "x": 721, - "y": 2178, - "width": 66, - "height": 66, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_06_001": { - "x": 3990, - "y": 3306, - "width": 46, - "height": 46, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_07_001": { - "x": 2219, - "y": 3347, - "width": 60, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_08_001": { - "x": 496, - "y": 866, - "width": 246, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "persp_outline_09_001": { - "x": 1777, - "y": 1003, - "width": 126, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "pit_01_001": { - "x": 3155, - "y": 896, - "width": 121, - "height": 106, - "rotation": 90, - "spritesheet": 1 - }, - "pit_01_low_001": { - "x": 1765, - "y": 1277, - "width": 121, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "pit_01_slope_01_001": { - "x": 919, - "y": 165, - "width": 170, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "pit_01_slope_02_001": { - "x": 1, - "y": 620, - "width": 269, - "height": 64, - "rotation": 0, - "spritesheet": 1 - }, - "pit_02_001": { - "x": 1282, - "y": 1217, - "width": 121, - "height": 94, - "rotation": 0, - "spritesheet": 1 - }, - "pit_03_001": { - "x": 1405, - "y": 1171, - "width": 121, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "pit_04_001": { - "x": 1405, - "y": 1271, - "width": 121, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "pit_04_02_001": { - "x": 1766, - "y": 1205, - "width": 121, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "pit_04_03_001": { - "x": 3193, - "y": 245, - "width": 121, - "height": 68, - "rotation": 90, - "spritesheet": 1 - }, - "pit_04_low_001": { - "x": 2737, - "y": 365, - "width": 121, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "pit_04_slope_01_001": { - "x": 273, - "y": 585, - "width": 171, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "pit_04_slope_02_001": { - "x": 1, - "y": 463, - "width": 272, - "height": 53, - "rotation": 0, - "spritesheet": 1 - }, - "pit_05_001": { - "x": 3435, - "y": 959, - "width": 121, - "height": 52, - "rotation": 90, - "spritesheet": 1 - }, - "pit_05_02_001": { - "x": 2019, - "y": 1251, - "width": 121, - "height": 42, - "rotation": 0, - "spritesheet": 1 - }, - "pit_05_03_001": { - "x": 1341, - "y": 3411, - "width": 60, - "height": 52, - "rotation": 90, - "spritesheet": 1 - }, - "pit_06_001": { - "x": 1766, - "y": 1131, - "width": 121, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "pit_06_2_001": { - "x": 1655, - "y": 2375, - "width": 101, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_001": { - "x": 1765, - "y": 1339, - "width": 121, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_2_001": { - "x": 744, - "y": 979, - "width": 31, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_2_shine_001": { - "x": 3091, - "y": 2633, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_3_001": { - "x": 1406, - "y": 1049, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_3_shine_001": { - "x": 3374, - "y": 3130, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_4_001": { - "x": 511, - "y": 3794, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_4_shine_001": { - "x": 3091, - "y": 2673, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 1 - }, - "pit_07_shine_001": { - "x": 2615, - "y": 1337, - "width": 120, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "pit_b_01_001": { - "x": 3709, - "y": 647, - "width": 185, - "height": 200, - "rotation": 90, - "spritesheet": 1 - }, - "pit_b_02_001": { - "x": 319, - "y": 341, - "width": 177, - "height": 222, - "rotation": 0, - "spritesheet": 1 - }, - "pit_b_03_001": { - "x": 3709, - "y": 834, - "width": 155, - "height": 200, - "rotation": 90, - "spritesheet": 1 - }, - "pit_b_04_001": { - "x": 3709, - "y": 1033, - "width": 149, - "height": 162, - "rotation": 90, - "spritesheet": 1 - }, - "plank005_01_001": { - "x": 1219, - "y": 351, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "plank005_01_color_001": { - "x": 3072, - "y": 3017, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_02_001": { - "x": 1195, - "y": 2561, - "width": 120, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "plank005_02_color_001": { - "x": 3468, - "y": 2967, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_01_001": { - "x": 1, - "y": 3751, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_01_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_02_001": { - "x": 2777, - "y": 939, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_02_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_square_01_001": { - "x": 2372, - "y": 2077, - "width": 108, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_square_01_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "plank005_slope_square_02_001": { - "x": 1663, - "y": 899, - "width": 120, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "plank005_slope_square_02_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005_slope_square_03_001": { - "x": 1151, - "y": 2227, - "width": 104, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "plank005b_01_001": { - "x": 1219, - "y": 473, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "plank005b_01_color_001": { - "x": 3072, - "y": 3017, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_02_001": { - "x": 1195, - "y": 2683, - "width": 120, - "height": 80, - "rotation": 90, - "spritesheet": 1 - }, - "plank005b_02_color_001": { - "x": 3468, - "y": 2967, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_01_001": { - "x": 121, - "y": 3746, - "width": 74, - "height": 70, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_01_color_001": { - "x": 789, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_02_001": { - "x": 2493, - "y": 911, - "width": 154, - "height": 72, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_02_color_001": { - "x": 791, - "y": 703, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_square_01_001": { - "x": 2371, - "y": 2177, - "width": 108, - "height": 98, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_square_01_color_001": { - "x": 2693, - "y": 3335, - "width": 50, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "plank005b_slope_square_02_001": { - "x": 1662, - "y": 1021, - "width": 120, - "height": 102, - "rotation": 90, - "spritesheet": 1 - }, - "plank005b_slope_square_02_color_001": { - "x": 3805, - "y": 3472, - "width": 88, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank005b_slope_square_03_001": { - "x": 4053, - "y": 2604, - "width": 104, - "height": 42, - "rotation": 90, - "spritesheet": 1 - }, - "plank007_01_001": { - "x": 3080, - "y": 2897, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "plank007_02_001": { - "x": 3252, - "y": 2943, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "plank007_03_001": { - "x": 2828, - "y": 2945, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_001": { - "x": 2949, - "y": 3061, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_02_001": { - "x": 3468, - "y": 3023, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_03_001": { - "x": 3468, - "y": 3079, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_color_001": { - "x": 605, - "y": 2006, - "width": 116, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_slope_01_001": { - "x": 3489, - "y": 995, - "width": 170, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_slope_01_color_001": { - "x": 3709, - "y": 991, - "width": 170, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_slope_02_001": { - "x": 1, - "y": 752, - "width": 269, - "height": 50, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_slope_02_color_001": { - "x": 1, - "y": 804, - "width": 268, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_small_001": { - "x": 2097, - "y": 3393, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_small_color_001": { - "x": 4067, - "y": 3616, - "width": 58, - "height": 28, - "rotation": 90, - "spritesheet": 1 - }, - "plank_01_square_01_001": { - "x": 2165, - "y": 3143, - "width": 56, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_square_01_color_001": { - "x": 1573, - "y": 3407, - "width": 56, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_square_02_001": { - "x": 3816, - "y": 2766, - "width": 108, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "plank_01_square_02_color_001": { - "x": 1655, - "y": 2321, - "width": 102, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "puzzle_base_001": { - "x": 2969, - "y": 2455, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "puzzle_base_color_001": { - "x": 1025, - "y": 2737, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 1 - }, - "puzzle_piece_01_001": { - "x": 4056, - "y": 2062, - "width": 52, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "puzzle_piece_01_color_001": { - "x": 2455, - "y": 1039, - "width": 52, - "height": 34, - "rotation": 90, - "spritesheet": 1 - }, - "puzzle_piece_02_001": { - "x": 3092, - "y": 2375, - "width": 52, - "height": 38, - "rotation": 90, - "spritesheet": 1 - }, - "puzzle_piece_02_color_001": { - "x": 721, - "y": 2246, - "width": 52, - "height": 66, - "rotation": 90, - "spritesheet": 1 - }, - "puzzle_piece_03_001": { - "x": 2281, - "y": 1211, - "width": 52, - "height": 8, - "rotation": 90, - "spritesheet": 1 - }, - "puzzle_piece_03_color_001": { - "x": 3769, - "y": 3448, - "width": 52, - "height": 34, - "rotation": 90, - "spritesheet": 1 - }, - "ring_01_001": { - "x": 3131, - "y": 2529, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "ring_02_001": { - "x": 2019, - "y": 1123, - "width": 126, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "ring_03_001": { - "x": 1282, - "y": 1095, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "ring_custom_01_001": { - "x": 911, - "y": 2149, - "width": 114, - "height": 114, - "rotation": 0, - "spritesheet": 1 - }, - "ring_custom_01_color_001": { - "x": 2043, - "y": 3201, - "width": 56, - "height": 56, - "rotation": 0, - "spritesheet": 1 - }, - "rod_01_001": { - "x": 1033, - "y": 757, - "width": 26, - "height": 168, - "rotation": 90, - "spritesheet": 1 - }, - "rod_02_001": { - "x": 2629, - "y": 1107, - "width": 24, - "height": 106, - "rotation": 0, - "spritesheet": 1 - }, - "rod_03_001": { - "x": 3831, - "y": 1760, - "width": 22, - "height": 50, - "rotation": 0, - "spritesheet": 1 - }, - "rod_ball_01_001": { - "x": 3253, - "y": 2575, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "rod_ball_02_001": { - "x": 3477, - "y": 2661, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "rod_ball_03_001": { - "x": 3693, - "y": 2858, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "sawblade_01_001": { - "x": 1423, - "y": 145, - "width": 168, - "height": 328, - "rotation": 90, - "spritesheet": 1 - }, - "sawblade_02_001": { - "x": 2537, - "y": 1, - "width": 240, - "height": 240, - "rotation": 0, - "spritesheet": 1 - }, - "sawblade_03_001": { - "x": 3937, - "y": 225, - "width": 157, - "height": 158, - "rotation": 90, - "spritesheet": 1 - }, - "smallOutline_01_001": { - "x": 3873, - "y": 1033, - "width": 60, - "height": 6, - "rotation": 90, - "spritesheet": 1 - }, - "smallOutline_02_001": { - "x": 2101, - "y": 3205, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "smallOutline_03_001": { - "x": 1981, - "y": 3261, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "smallOutline_04_001": { - "x": 3856, - "y": 1346, - "width": 8, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "smallOutline_05_001": { - "x": 2165, - "y": 797, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "spike_01_001": { - "x": 2002, - "y": 2515, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "spike_02_001": { - "x": 3252, - "y": 3061, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "spike_03_001": { - "x": 699, - "y": 3438, - "width": 80, - "height": 76, - "rotation": 90, - "spritesheet": 1 - }, - "spike_04_001": { - "x": 2930, - "y": 1817, - "width": 50, - "height": 48, - "rotation": 90, - "spritesheet": 1 - }, - "spinBlade01_001": { - "x": 3937, - "y": 874, - "width": 194, - "height": 154, - "rotation": 90, - "spritesheet": 1 - }, - "spinBlade01_color_001": { - "x": 2021, - "y": 971, - "width": 114, - "height": 138, - "rotation": 90, - "spritesheet": 1 - }, - "spinBlade02_001": { - "x": 3137, - "y": 1019, - "width": 124, - "height": 126, - "rotation": 0, - "spritesheet": 1 - }, - "spinBlade02_color_001": { - "x": 2371, - "y": 2277, - "width": 58, - "height": 108, - "rotation": 90, - "spritesheet": 1 - }, - "square_01_001": { - "x": 1879, - "y": 2567, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_01_small_001": { - "x": 1395, - "y": 3433, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "square_01_small_color_001": { - "x": 1921, - "y": 3127, - "width": 58, - "height": 58, - "rotation": 0, - "spritesheet": 1 - }, - "square_02_001": { - "x": 1757, - "y": 2621, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_03_001": { - "x": 1399, - "y": 2809, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_04_001": { - "x": 1277, - "y": 2899, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_05_001": { - "x": 903, - "y": 2965, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_06_001": { - "x": 781, - "y": 3021, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_07_001": { - "x": 903, - "y": 3087, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_08_001": { - "x": 781, - "y": 3143, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_09_001": { - "x": 478, - "y": 3190, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_b_01_001": { - "x": 243, - "y": 1259, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "square_b_02_001": { - "x": 355, - "y": 3205, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_b_03_001": { - "x": 4038, - "y": 3390, - "width": 58, - "height": 56, - "rotation": 90, - "spritesheet": 1 - }, - "square_b_04_001": { - "x": 243, - "y": 1381, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "square_b_05_001": { - "x": 3871, - "y": 1288, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "square_b_06_001": { - "x": 243, - "y": 1503, - "width": 120, - "height": 64, - "rotation": 90, - "spritesheet": 1 - }, - "square_c_05_001": { - "x": 233, - "y": 3305, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_d_05_001": { - "x": 1, - "y": 3435, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_01_001": { - "x": 3917, - "y": 2946, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_02_001": { - "x": 2603, - "y": 2355, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_03_001": { - "x": 2725, - "y": 2355, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_05_001": { - "x": 2847, - "y": 2457, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_06_001": { - "x": 2969, - "y": 2577, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_07_001": { - "x": 3131, - "y": 2651, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_brick01_001": { - "x": 2705, - "y": 2965, - "width": 120, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "square_f_brick02_001": { - "x": 1855, - "y": 3313, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_03_001": { - "x": 3253, - "y": 2697, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_04_001": { - "x": 3477, - "y": 2783, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_05_001": { - "x": 3693, - "y": 2980, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_06_001": { - "x": 3917, - "y": 3068, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_07_001": { - "x": 2473, - "y": 2463, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_08_001": { - "x": 2248, - "y": 2531, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_09_001": { - "x": 2124, - "y": 2617, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_10_001": { - "x": 2001, - "y": 2637, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_11_001": { - "x": 1879, - "y": 2689, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_12_001": { - "x": 1753, - "y": 2743, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_13_001": { - "x": 1399, - "y": 2931, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_14_001": { - "x": 1277, - "y": 3021, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_15_001": { - "x": 903, - "y": 3209, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_g_16_001": { - "x": 781, - "y": 3265, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_01_001": { - "x": 1873, - "y": 2905, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_02_001": { - "x": 1749, - "y": 2959, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_03_001": { - "x": 2838, - "y": 2671, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_04_001": { - "x": 477, - "y": 3312, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_05_001": { - "x": 2716, - "y": 2753, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_06_001": { - "x": 355, - "y": 3327, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_07_001": { - "x": 3893, - "y": 3606, - "width": 54, - "height": 86, - "rotation": 90, - "spritesheet": 1 - }, - "square_h_08_001": { - "x": 2592, - "y": 2781, - "width": 120, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_09_001": { - "x": 3677, - "y": 3506, - "width": 86, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_h_10_001": { - "x": 3679, - "y": 3418, - "width": 88, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "square_i_07_color_001": { - "x": 1013, - "y": 446, - "width": 10, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_001": { - "x": 1905, - "y": 1085, - "width": 8, - "height": 8, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_002": { - "x": 1204, - "y": 581, - "width": 12, - "height": 12, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_003": { - "x": 1246, - "y": 3597, - "width": 24, - "height": 22, - "rotation": 90, - "spritesheet": 1 - }, - "starAnim_004": { - "x": 3091, - "y": 2471, - "width": 38, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_005": { - "x": 2859, - "y": 3335, - "width": 50, - "height": 50, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_006": { - "x": 2575, - "y": 3323, - "width": 52, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "starAnim_007": { - "x": 2811, - "y": 3281, - "width": 52, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "starAnim_008": { - "x": 2749, - "y": 3303, - "width": 52, - "height": 54, - "rotation": 90, - "spritesheet": 1 - }, - "starAnim_009": { - "x": 2867, - "y": 3281, - "width": 52, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_010": { - "x": 2921, - "y": 3283, - "width": 52, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "starAnim_011": { - "x": 265, - "y": 976, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_a_02_001": { - "x": 477, - "y": 3434, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_a_04_001": { - "x": 2535, - "y": 243, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_b_01_001": { - "x": 3489, - "y": 945, - "width": 170, - "height": 48, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_b_02_001": { - "x": 1, - "y": 686, - "width": 269, - "height": 64, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_b_square_01_001": { - "x": 3992, - "y": 3252, - "width": 44, - "height": 52, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_b_square_02_001": { - "x": 123, - "y": 2191, - "width": 116, - "height": 54, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_c_02_001": { - "x": 225, - "y": 3427, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_c_04_001": { - "x": 2293, - "y": 353, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_d_02_001": { - "x": 1658, - "y": 1777, - "width": 102, - "height": 102, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_d_04_001": { - "x": 3713, - "y": 123, - "width": 222, - "height": 112, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_f_02_001": { - "x": 1, - "y": 3557, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_f_04_001": { - "x": 2021, - "y": 413, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_g_02_001": { - "x": 347, - "y": 3449, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_g_04_001": { - "x": 1779, - "y": 483, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_g_square_01_001": { - "x": 223, - "y": 3549, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_g_square_02_001": { - "x": 2595, - "y": 2477, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_g_square_03_001": { - "x": 2472, - "y": 2585, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_h_01_001": { - "x": 2246, - "y": 2653, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_h_02_001": { - "x": 3021, - "y": 123, - "width": 240, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_h_square_01_001": { - "x": 3805, - "y": 3582, - "width": 86, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_h_square_02_001": { - "x": 3489, - "y": 857, - "width": 170, - "height": 86, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_i_02_001": { - "x": 323, - "y": 239, - "width": 30, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "triangle_i_04_001": { - "x": 1, - "y": 263, - "width": 60, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "waterSplash_001": { - "x": 3559, - "y": 3257, - "width": 70, - "height": 28, - "rotation": 90, - "spritesheet": 1 - }, - "waterSplash_002": { - "x": 3775, - "y": 3308, - "width": 68, - "height": 28, - "rotation": 90, - "spritesheet": 1 - }, - "waterSplash_003": { - "x": 3773, - "y": 3378, - "width": 68, - "height": 30, - "rotation": 90, - "spritesheet": 1 - }, - "waterSplash_004": { - "x": 1185, - "y": 3415, - "width": 68, - "height": 30, - "rotation": 0, - "spritesheet": 1 - }, - "waterSplash_005": { - "x": 862, - "y": 3387, - "width": 68, - "height": 32, - "rotation": 90, - "spritesheet": 1 - }, - "waterSplash_006": { - "x": 862, - "y": 3457, - "width": 68, - "height": 32, - "rotation": 90, - "spritesheet": 1 - }, - "waterfallAnim_001": { - "x": 1791, - "y": 3357, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_002": { - "x": 1695, - "y": 3407, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_003": { - "x": 1631, - "y": 3449, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_004": { - "x": 1569, - "y": 3463, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_005": { - "x": 1917, - "y": 3317, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_006": { - "x": 1853, - "y": 3375, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_007": { - "x": 1791, - "y": 3419, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_008": { - "x": 1693, - "y": 3469, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_009": { - "x": 1631, - "y": 3511, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_010": { - "x": 1499, - "y": 3475, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_001": { - "x": 1603, - "y": 3187, - "width": 60, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "waterfallAnim_color_002": { - "x": 1394, - "y": 3557, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_003": { - "x": 1332, - "y": 3597, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_004": { - "x": 1270, - "y": 3627, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_005": { - "x": 1561, - "y": 3525, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_006": { - "x": 1499, - "y": 3537, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 1 - }, - "waterfallAnim_color_007": { - "x": 1481, - "y": 3147, - "width": 60, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "waterfallAnim_color_008": { - "x": 1603, - "y": 3187, - "width": 60, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "waterfallAnim_color_009": { - "x": 1603, - "y": 3187, - "width": 60, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "waterfallAnim_color_010": { - "x": 1603, - "y": 3187, - "width": 60, - "height": 36, - "rotation": 90, - "spritesheet": 1 - }, - "whiteSquare20_001": { - "x": 223, - "y": 3875, - "width": 40, - "height": 40, - "rotation": 0, - "spritesheet": 1 - }, - "whiteSquare40_001": { - "x": 345, - "y": 3571, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 1 - }, - "whiteSquare60_001": { - "x": 241, - "y": 2207, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 1 - }, - "bird_01_001": { - "x": 325, - "y": 558, - "width": 147, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "bird_01_2_001": { - "x": 1526, - "y": 752, - "width": 139, - "height": 56, - "rotation": 0, - "spritesheet": 2 - }, - "bird_01_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_02_001": { - "x": 3896, - "y": 1614, - "width": 154, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "bird_02_2_001": { - "x": 1193, - "y": 1316, - "width": 138, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "bird_02_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_03_001": { - "x": 722, - "y": 491, - "width": 150, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "bird_03_2_001": { - "x": 871, - "y": 716, - "width": 144, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "bird_03_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_04_001": { - "x": 3741, - "y": 1359, - "width": 157, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "bird_04_2_001": { - "x": 1745, - "y": 1364, - "width": 134, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "bird_04_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_05_001": { - "x": 504, - "y": 534, - "width": 150, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_05_2_001": { - "x": 1451, - "y": 1973, - "width": 120, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "bird_05_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_06_001": { - "x": 722, - "y": 649, - "width": 148, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "bird_06_2_001": { - "x": 1, - "y": 853, - "width": 144, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_06_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_07_001": { - "x": 1, - "y": 987, - "width": 142, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_07_2_001": { - "x": 2112, - "y": 436, - "width": 136, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "bird_07_3_001": { - "x": 642, - "y": 1309, - "width": 123, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "bird_08_001": { - "x": 1194, - "y": 725, - "width": 148, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_08_2_001": { - "x": 451, - "y": 1122, - "width": 141, - "height": 50, - "rotation": 90, - "spritesheet": 2 - }, - "bird_08_3_001": { - "x": 3249, - "y": 1641, - "width": 123, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "bird_09_001": { - "x": 3739, - "y": 1712, - "width": 153, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_09_2_001": { - "x": 722, - "y": 726, - "width": 144, - "height": 56, - "rotation": 0, - "spritesheet": 2 - }, - "bird_09_3_001": { - "x": 1115, - "y": 2672, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_10_001": { - "x": 157, - "y": 2756, - "width": 118, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_10_2_001": { - "x": 1053, - "y": 2732, - "width": 104, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "bird_10_3_001": { - "x": 1115, - "y": 2672, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_11_001": { - "x": 649, - "y": 835, - "width": 132, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "bird_11_2_001": { - "x": 1334, - "y": 1087, - "width": 82, - "height": 14, - "rotation": 90, - "spritesheet": 2 - }, - "bird_11_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_12_001": { - "x": 721, - "y": 1416, - "width": 140, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "bird_12_2_001": { - "x": 4050, - "y": 1758, - "width": 132, - "height": 44, - "rotation": 90, - "spritesheet": 2 - }, - "bird_12_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_13_001": { - "x": 1, - "y": 693, - "width": 146, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "bird_13_2_001": { - "x": 3526, - "y": 596, - "width": 138, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "bird_13_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_14_001": { - "x": 873, - "y": 548, - "width": 148, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_14_2_001": { - "x": 450, - "y": 1264, - "width": 128, - "height": 50, - "rotation": 90, - "spritesheet": 2 - }, - "bird_14_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_15_001": { - "x": 1004, - "y": 1337, - "width": 140, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "bird_15_2_001": { - "x": 2568, - "y": 1339, - "width": 110, - "height": 56, - "rotation": 90, - "spritesheet": 2 - }, - "bird_15_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_16_001": { - "x": 3557, - "y": 1333, - "width": 158, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_16_2_001": { - "x": 2557, - "y": 1556, - "width": 122, - "height": 66, - "rotation": 90, - "spritesheet": 2 - }, - "bird_16_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_17_001": { - "x": 1193, - "y": 1375, - "width": 136, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "bird_17_2_001": { - "x": 1257, - "y": 1732, - "width": 120, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "bird_17_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_18_001": { - "x": 2465, - "y": 1147, - "width": 160, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_18_2_001": { - "x": 2434, - "y": 2696, - "width": 88, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "bird_18_3_001": { - "x": 1114, - "y": 2745, - "width": 106, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_19_001": { - "x": 1022, - "y": 643, - "width": 148, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_19_2_001": { - "x": 1, - "y": 926, - "width": 144, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "bird_19_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_20_001": { - "x": 3741, - "y": 1426, - "width": 156, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "bird_20_2_001": { - "x": 3896, - "y": 1689, - "width": 153, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "bird_20_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_20_extra_001": { - "x": 2288, - "y": 2289, - "width": 90, - "height": 48, - "rotation": 90, - "spritesheet": 2 - }, - "bird_21_001": { - "x": 3148, - "y": 1151, - "width": 128, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "bird_21_2_001": { - "x": 3486, - "y": 2760, - "width": 92, - "height": 68, - "rotation": 90, - "spritesheet": 2 - }, - "bird_21_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_21_extra_001": { - "x": 1221, - "y": 2847, - "width": 96, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "bird_22_001": { - "x": 2775, - "y": 306, - "width": 180, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "bird_22_2_001": { - "x": 1197, - "y": 212, - "width": 108, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "bird_22_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_22_extra_001": { - "x": 3264, - "y": 2922, - "width": 74, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "bird_23_001": { - "x": 721, - "y": 1483, - "width": 136, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "bird_23_2_001": { - "x": 2436, - "y": 1226, - "width": 132, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "bird_23_3_001": { - "x": 1570, - "y": 2081, - "width": 116, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_23_extra_001": { - "x": 3228, - "y": 314, - "width": 92, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "bird_24_001": { - "x": 2887, - "y": 1054, - "width": 164, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_24_2_001": { - "x": 2887, - "y": 1123, - "width": 160, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "bird_24_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_24_extra_001": { - "x": 1496, - "y": 1056, - "width": 128, - "height": 14, - "rotation": 90, - "spritesheet": 2 - }, - "bird_25_001": { - "x": 858, - "y": 1512, - "width": 136, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_25_2_001": { - "x": 991, - "y": 1622, - "width": 132, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "bird_25_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_25_extra_001": { - "x": 2112, - "y": 835, - "width": 122, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "bird_26_001": { - "x": 1463, - "y": 1640, - "width": 130, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "bird_26_2_001": { - "x": 3493, - "y": 2012, - "width": 114, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "bird_26_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_26_extra_001": { - "x": 3680, - "y": 1734, - "width": 114, - "height": 58, - "rotation": 90, - "spritesheet": 2 - }, - "bird_27_001": { - "x": 3898, - "y": 1472, - "width": 156, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_27_2_001": { - "x": 2138, - "y": 1631, - "width": 128, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "bird_27_3_001": { - "x": 3249, - "y": 1791, - "width": 122, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "bird_27_extra_001": { - "x": 2848, - "y": 246, - "width": 82, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "bird_28_001": { - "x": 1, - "y": 756, - "width": 144, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "bird_28_2_001": { - "x": 862, - "y": 1340, - "width": 140, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "bird_28_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_28_extra_001": { - "x": 862, - "y": 1431, - "width": 136, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "bird_29_001": { - "x": 3408, - "y": 1417, - "width": 148, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "bird_29_2_001": { - "x": 644, - "y": 1170, - "width": 138, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "bird_29_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_29_extra_001": { - "x": 1273, - "y": 1472, - "width": 132, - "height": 56, - "rotation": 90, - "spritesheet": 2 - }, - "bird_30_001": { - "x": 907, - "y": 254, - "width": 154, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "bird_30_2_001": { - "x": 3249, - "y": 1532, - "width": 152, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "bird_30_3_001": { - "x": 3733, - "y": 2870, - "width": 116, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "bird_30_extra_001": { - "x": 2569, - "y": 1226, - "width": 112, - "height": 56, - "rotation": 90, - "spritesheet": 2 - }, - "bird_31_001": { - "x": 506, - "y": 392, - "width": 152, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_31_2_001": { - "x": 721, - "y": 1554, - "width": 136, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "bird_31_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_32_001": { - "x": 317, - "y": 811, - "width": 144, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "bird_32_2_001": { - "x": 3496, - "y": 1832, - "width": 112, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "bird_32_3_001": { - "x": 3733, - "y": 2870, - "width": 116, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "bird_32_extra_001": { - "x": 651, - "y": 694, - "width": 140, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "bird_33_001": { - "x": 3045, - "y": 1368, - "width": 152, - "height": 102, - "rotation": 90, - "spritesheet": 2 - }, - "bird_33_2_001": { - "x": 1016, - "y": 716, - "width": 144, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "bird_33_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_33_extra_001": { - "x": 143, - "y": 1083, - "width": 42, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "bird_34_001": { - "x": 353, - "y": 467, - "width": 150, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "bird_34_2_001": { - "x": 169, - "y": 836, - "width": 144, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "bird_34_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_34_extra_001": { - "x": 1793, - "y": 1198, - "width": 138, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "bird_35_001": { - "x": 721, - "y": 1347, - "width": 140, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "bird_35_2_001": { - "x": 2112, - "y": 573, - "width": 132, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "bird_35_3_001": { - "x": 3372, - "y": 1882, - "width": 122, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "bird_35_extra_001": { - "x": 4055, - "y": 1481, - "width": 128, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "boost_01_001": { - "x": 178, - "y": 337, - "width": 140, - "height": 174, - "rotation": 90, - "spritesheet": 2 - }, - "boost_02_001": { - "x": 3557, - "y": 761, - "width": 132, - "height": 226, - "rotation": 90, - "spritesheet": 2 - }, - "boost_03_001": { - "x": 3558, - "y": 558, - "width": 202, - "height": 226, - "rotation": 90, - "spritesheet": 2 - }, - "boost_04_001": { - "x": 2887, - "y": 657, - "width": 260, - "height": 226, - "rotation": 0, - "spritesheet": 2 - }, - "boost_05_001": { - "x": 3249, - "y": 511, - "width": 276, - "height": 226, - "rotation": 0, - "spritesheet": 2 - }, - "checkpoint_01_001": { - "x": 1261, - "y": 1605, - "width": 68, - "height": 126, - "rotation": 0, - "spritesheet": 2 - }, - "dart_01_001": { - "x": 714, - "y": 2973, - "width": 102, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_01_2_001": { - "x": 873, - "y": 422, - "width": 20, - "height": 40, - "rotation": 0, - "spritesheet": 2 - }, - "dart_02_001": { - "x": 492, - "y": 3005, - "width": 102, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_02_2_001": { - "x": 2822, - "y": 2911, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "dart_03_001": { - "x": 3967, - "y": 3024, - "width": 116, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_03_2_001": { - "x": 457, - "y": 934, - "width": 98, - "height": 44, - "rotation": 90, - "spritesheet": 2 - }, - "dart_04_001": { - "x": 1221, - "y": 2764, - "width": 104, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_04_2_001": { - "x": 3493, - "y": 2521, - "width": 84, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "dart_05_001": { - "x": 2961, - "y": 2483, - "width": 116, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_05_2_001": { - "x": 1114, - "y": 2873, - "width": 96, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "dart_06_001": { - "x": 719, - "y": 2468, - "width": 118, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_06_2_001": { - "x": 462, - "y": 867, - "width": 66, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "dart_07_001": { - "x": 1687, - "y": 2081, - "width": 112, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_07_2_001": { - "x": 3228, - "y": 407, - "width": 58, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "dart_08_001": { - "x": 3042, - "y": 2527, - "width": 104, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "dart_08_2_001": { - "x": 3007, - "y": 1697, - "width": 70, - "height": 36, - "rotation": 90, - "spritesheet": 2 - }, - "dart_09_001": { - "x": 1549, - "y": 2528, - "width": 108, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_09_2_001": { - "x": 3732, - "y": 3056, - "width": 66, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "dart_10_001": { - "x": 374, - "y": 3053, - "width": 102, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_10_2_001": { - "x": 3555, - "y": 2930, - "width": 74, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "dart_11_001": { - "x": 258, - "y": 3107, - "width": 102, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_11_2_001": { - "x": 3526, - "y": 735, - "width": 88, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "dart_12_001": { - "x": 595, - "y": 3011, - "width": 102, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "dart_12_2_001": { - "x": 3849, - "y": 3220, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "dart_13_001": { - "x": 611, - "y": 2924, - "width": 102, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "dart_13_2_001": { - "x": 1084, - "y": 1925, - "width": 38, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "dart_14_001": { - "x": 1326, - "y": 2661, - "width": 106, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "dart_14_2_001": { - "x": 3915, - "y": 3128, - "width": 50, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "dart_15_001": { - "x": 3264, - "y": 2701, - "width": 104, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "dart_15_2_001": { - "x": 1532, - "y": 2811, - "width": 85, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "dart_16_001": { - "x": 1326, - "y": 2750, - "width": 106, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "dart_16_2_001": { - "x": 2055, - "y": 2635, - "width": 90, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_17_001": { - "x": 3264, - "y": 2610, - "width": 104, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "dart_17_2_001": { - "x": 3671, - "y": 2978, - "width": 71, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "dart_18_001": { - "x": 640, - "y": 1595, - "width": 108, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_18_2_001": { - "x": 2990, - "y": 2122, - "width": 104, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "dart_19_001": { - "x": 1326, - "y": 2837, - "width": 96, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "dart_19_2_001": { - "x": 2494, - "y": 2796, - "width": 70, - "height": 84, - "rotation": 90, - "spritesheet": 2 - }, - "dart_20_001": { - "x": 640, - "y": 1704, - "width": 106, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_20_2_001": { - "x": 1498, - "y": 847, - "width": 48, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "dart_21_001": { - "x": 716, - "y": 2884, - "width": 102, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "dart_21_2_001": { - "x": 3677, - "y": 2650, - "width": 58, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "dart_22_001": { - "x": 1043, - "y": 2837, - "width": 102, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "dart_22_2_001": { - "x": 3493, - "y": 2335, - "width": 94, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "dart_23_001": { - "x": 1955, - "y": 2285, - "width": 110, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "dart_23_2_001": { - "x": 2337, - "y": 2388, - "width": 102, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "dart_24_001": { - "x": 640, - "y": 2021, - "width": 102, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_24_2_001": { - "x": 1767, - "y": 2630, - "width": 94, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "dart_24_extra_001": { - "x": 3558, - "y": 32, - "width": 47, - "height": 6, - "rotation": 90, - "spritesheet": 2 - }, - "dart_25_001": { - "x": 932, - "y": 2892, - "width": 104, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "dart_25_2_001": { - "x": 1780, - "y": 2396, - "width": 65, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "dart_26_001": { - "x": 640, - "y": 1811, - "width": 104, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_26_2_001": { - "x": 3670, - "y": 3176, - "width": 50, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "dart_27_001": { - "x": 1326, - "y": 2588, - "width": 108, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "dart_27_2_001": { - "x": 1789, - "y": 2796, - "width": 50, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "dart_28_001": { - "x": 1114, - "y": 2924, - "width": 95, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "dart_28_2_001": { - "x": 3177, - "y": 2976, - "width": 72, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "dart_29_001": { - "x": 1439, - "y": 2568, - "width": 108, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "dart_29_2_001": { - "x": 1037, - "y": 2940, - "width": 94, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "dart_29_extra_001": { - "x": 3720, - "y": 1286, - "width": 48, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "dart_30_001": { - "x": 3148, - "y": 2265, - "width": 100, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "dart_30_2_001": { - "x": 2322, - "y": 2729, - "width": 86, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "dart_30_extra_001": { - "x": 2755, - "y": 589, - "width": 11, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "dart_31_001": { - "x": 3850, - "y": 2976, - "width": 116, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "dart_31_2_001": { - "x": 565, - "y": 1674, - "width": 108, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "dart_31_extra_001": { - "x": 3558, - "y": 8, - "width": 8, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "dart_32_001": { - "x": 640, - "y": 2124, - "width": 95, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "dart_32_2_001": { - "x": 2626, - "y": 2595, - "width": 87, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "dart_32_extra_001": { - "x": 2112, - "y": 278, - "width": 53, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "dart_33_001": { - "x": 1658, - "y": 2599, - "width": 108, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "dart_33_2_001": { - "x": 1778, - "y": 2462, - "width": 98, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "dart_33_extra_001": { - "x": 3497, - "y": 1769, - "width": 59, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "dart_34_001": { - "x": 1679, - "y": 2164, - "width": 112, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "dart_34_2_001": { - "x": 146, - "y": 840, - "width": 63, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "dart_34_extra_001": { - "x": 4084, - "y": 975, - "width": 29, - "height": 10, - "rotation": 90, - "spritesheet": 2 - }, - "dart_35_001": { - "x": 145, - "y": 3118, - "width": 102, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "dart_35_2_001": { - "x": 3678, - "y": 2184, - "width": 74, - "height": 58, - "rotation": 90, - "spritesheet": 2 - }, - "dart_35_extra_001": { - "x": 4083, - "y": 1230, - "width": 49, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eAlphaBtn_001": { - "x": 1511, - "y": 1091, - "width": 140, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eAnimateBtn_001": { - "x": 1195, - "y": 499, - "width": 162, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eBGEOff_001": { - "x": 1636, - "y": 1228, - "width": 136, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eBGEOn_001": { - "x": 2164, - "y": 1147, - "width": 136, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eCollisionBlock01_001": { - "x": 3555, - "y": 2712, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eCollisionBtn_001": { - "x": 3899, - "y": 472, - "width": 196, - "height": 128, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eCountBtn_001": { - "x": 895, - "y": 409, - "width": 138, - "height": 126, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eCounterBtn_001": { - "x": 1, - "y": 430, - "width": 174, - "height": 126, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eFollowComBtn_001": { - "x": 2886, - "y": 1249, - "width": 158, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eFollowPComBtn_001": { - "x": 1358, - "y": 508, - "width": 170, - "height": 168, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eGhostDBtn_001": { - "x": 164, - "y": 1322, - "width": 141, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eGhostEBtn_001": { - "x": 1594, - "y": 1649, - "width": 129, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eInstantCountBtn_001": { - "x": 1197, - "y": 247, - "width": 140, - "height": 160, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eMoveComBtn_001": { - "x": 1843, - "y": 1871, - "width": 114, - "height": 124, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eOnDeathBtn_001": { - "x": 1694, - "y": 10, - "width": 108, - "height": 160, - "rotation": 0, - "spritesheet": 2 - }, - "edit_ePHideBtn_001": { - "x": 524, - "y": 2284, - "width": 90, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "edit_ePShowBtn_001": { - "x": 3981, - "y": 2695, - "width": 106, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "edit_ePickupBtn_001": { - "x": 3742, - "y": 1228, - "width": 156, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "edit_ePulseBtn_001": { - "x": 1932, - "y": 1199, - "width": 134, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eRotateComBtn_001": { - "x": 3893, - "y": 1762, - "width": 152, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eShakeBtn_001": { - "x": 1495, - "y": 1214, - "width": 140, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eSpawnBtn_001": { - "x": 2164, - "y": 1260, - "width": 134, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eStartPosBtn_001": { - "x": 317, - "y": 724, - "width": 144, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eStopMoverBtn_001": { - "x": 1973, - "y": 788, - "width": 138, - "height": 138, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTint3DLBtn_001": { - "x": 157, - "y": 2829, - "width": 84, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eTintBGBtn_001": { - "x": 644, - "y": 1057, - "width": 77, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTintCol01Btn_001": { - "x": 1566, - "y": 2160, - "width": 82, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eTintG2Btn_001": { - "x": 3557, - "y": 1489, - "width": 154, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTintGBtn_001": { - "x": 1116, - "y": 2561, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTintLBtn_001": { - "x": 3148, - "y": 1631, - "width": 100, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTintObjBtn_001": { - "x": 1, - "y": 2928, - "width": 84, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eToggleBtn2_001": { - "x": 2235, - "y": 2688, - "width": 84, - "height": 86, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eToggleBtn_001": { - "x": 3249, - "y": 1454, - "width": 158, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eTouchBtn_001": { - "x": 2626, - "y": 1053, - "width": 138, - "height": 126, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eeFABtn_001": { - "x": 641, - "y": 1433, - "width": 79, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFALBtn_001": { - "x": 3175, - "y": 793, - "width": 73, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFARBtn_001": { - "x": 637, - "y": 2471, - "width": 72, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eeFBBtn_001": { - "x": 1843, - "y": 2097, - "width": 65, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eeFLBtn_001": { - "x": 1679, - "y": 2235, - "width": 112, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFRBtn_001": { - "x": 1329, - "y": 2412, - "width": 111, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFRHBtn_001": { - "x": 447, - "y": 1393, - "width": 52, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFRHInvBtn_001": { - "x": 2111, - "y": 958, - "width": 52, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeFTBtn_001": { - "x": 1843, - "y": 2163, - "width": 65, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "edit_eeNoneBtn_001": { - "x": 3043, - "y": 2317, - "width": 104, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeSDBtn_001": { - "x": 2518, - "y": 1804, - "width": 105, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "edit_eeSUBtn_001": { - "x": 1792, - "y": 2178, - "width": 108, - "height": 50, - "rotation": 90, - "spritesheet": 2 - }, - "edit_scaleBtn_001": { - "x": 3672, - "y": 2869, - "width": 108, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "fireBoost_001": { - "x": 3966, - "y": 3107, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "floorLine_01_001": { - "x": 1803, - "y": 1, - "width": 1764, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "floorLine_02_001": { - "x": 1, - "y": 1, - "width": 1801, - "height": 8, - "rotation": 0, - "spritesheet": 2 - }, - "player_00_001": { - "x": 3249, - "y": 1884, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_00_2_001": { - "x": 1307, - "y": 2930, - "width": 44, - "height": 44, - "rotation": 0, - "spritesheet": 2 - }, - "player_01_001": { - "x": 2872, - "y": 1996, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_01_2_001": { - "x": 325, - "y": 478, - "width": 26, - "height": 26, - "rotation": 0, - "spritesheet": 2 - }, - "player_02_001": { - "x": 2746, - "y": 2018, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_02_2_001": { - "x": 2864, - "y": 2882, - "width": 78, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "player_03_001": { - "x": 2623, - "y": 2020, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_03_2_001": { - "x": 1443, - "y": 2226, - "width": 66, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "player_04_001": { - "x": 2498, - "y": 2096, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_04_2_001": { - "x": 2366, - "y": 2538, - "width": 73, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "player_05_001": { - "x": 2868, - "y": 2117, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_05_2_001": { - "x": 148, - "y": 708, - "width": 66, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "player_06_001": { - "x": 2745, - "y": 2139, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_06_2_001": { - "x": 3785, - "y": 558, - "width": 113, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_07_001": { - "x": 2620, - "y": 2141, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_07_2_001": { - "x": 1335, - "y": 978, - "width": 18, - "height": 30, - "rotation": 0, - "spritesheet": 2 - }, - "player_08_001": { - "x": 2353, - "y": 2146, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_08_2_001": { - "x": 3785, - "y": 671, - "width": 113, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_09_001": { - "x": 2215, - "y": 2168, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_09_2_001": { - "x": 146, - "y": 904, - "width": 63, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "player_100_001": { - "x": 3734, - "y": 2749, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_100_2_001": { - "x": 2061, - "y": 2568, - "width": 102, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "player_100_extra_001": { - "x": 3148, - "y": 2192, - "width": 100, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "player_101_001": { - "x": 2864, - "y": 2359, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_101_2_001": { - "x": 938, - "y": 2815, - "width": 104, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "player_101_extra_001": { - "x": 2440, - "y": 2459, - "width": 102, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "player_102_001": { - "x": 3855, - "y": 2855, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_102_2_001": { - "x": 2179, - "y": 2289, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_102_extra_001": { - "x": 2755, - "y": 506, - "width": 82, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "player_103_001": { - "x": 2719, - "y": 2381, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_103_2_001": { - "x": 3720, - "y": 1236, - "width": 49, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "player_103_extra_001": { - "x": 819, - "y": 2910, - "width": 102, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "player_104_001": { - "x": 2581, - "y": 2383, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_104_2_001": { - "x": 637, - "y": 2544, - "width": 47, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "player_104_extra_001": { - "x": 504, - "y": 613, - "width": 146, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "player_105_001": { - "x": 2626, - "y": 1321, - "width": 127, - "height": 126, - "rotation": 90, - "spritesheet": 2 - }, - "player_105_2_001": { - "x": 1, - "y": 2817, - "width": 117, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_105_extra_001": { - "x": 3148, - "y": 2393, - "width": 99, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "player_106_001": { - "x": 2840, - "y": 2480, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_106_2_001": { - "x": 1328, - "y": 2477, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_106_extra_001": { - "x": 2066, - "y": 2350, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_107_001": { - "x": 2702, - "y": 2502, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_107_2_001": { - "x": 2179, - "y": 2289, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_108_001": { - "x": 2250, - "y": 1925, - "width": 120, - "height": 124, - "rotation": 90, - "spritesheet": 2 - }, - "player_108_2_001": { - "x": 1945, - "y": 2655, - "width": 90, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "player_109_001": { - "x": 2106, - "y": 1934, - "width": 123, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_109_2_001": { - "x": 3043, - "y": 2207, - "width": 109, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "player_109_extra_001": { - "x": 3497, - "y": 1704, - "width": 59, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "player_10_001": { - "x": 2475, - "y": 2217, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_10_2_001": { - "x": 1171, - "y": 643, - "width": 85, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "player_110_001": { - "x": 2138, - "y": 1686, - "width": 127, - "height": 126, - "rotation": 0, - "spritesheet": 2 - }, - "player_110_2_001": { - "x": 2337, - "y": 2267, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_111_001": { - "x": 2625, - "y": 1449, - "width": 127, - "height": 128, - "rotation": 0, - "spritesheet": 2 - }, - "player_111_2_001": { - "x": 2823, - "y": 2601, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_111_extra_001": { - "x": 3558, - "y": 108, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 2 - }, - "player_112_001": { - "x": 2230, - "y": 2046, - "width": 121, - "height": 122, - "rotation": 90, - "spritesheet": 2 - }, - "player_112_2_001": { - "x": 3981, - "y": 2468, - "width": 115, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "player_112_extra_001": { - "x": 3148, - "y": 1517, - "width": 113, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "player_113_001": { - "x": 1, - "y": 1197, - "width": 141, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_113_2_001": { - "x": 1531, - "y": 312, - "width": 135, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_113_extra_001": { - "x": 2436, - "y": 1281, - "width": 131, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_114_001": { - "x": 2875, - "y": 1873, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_114_2_001": { - "x": 524, - "y": 2446, - "width": 112, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_114_extra_001": { - "x": 2989, - "y": 2322, - "width": 81, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "player_115_001": { - "x": 2391, - "y": 1900, - "width": 124, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_115_2_001": { - "x": 1330, - "y": 2071, - "width": 118, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "player_115_extra_001": { - "x": 524, - "y": 2375, - "width": 113, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "player_116_001": { - "x": 2332, - "y": 836, - "width": 133, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_116_2_001": { - "x": 1330, - "y": 1712, - "width": 129, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "player_116_extra_001": { - "x": 1853, - "y": 1756, - "width": 127, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "player_117_001": { - "x": 444, - "y": 1560, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_117_2_001": { - "x": 1, - "y": 3124, - "width": 88, - "height": 110, - "rotation": 90, - "spritesheet": 2 - }, - "player_117_extra_001": { - "x": 1244, - "y": 1853, - "width": 85, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_118_001": { - "x": 721, - "y": 1621, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_118_2_001": { - "x": 3976, - "y": 2905, - "width": 118, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "player_118_extra_001": { - "x": 3493, - "y": 2127, - "width": 108, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "player_119_001": { - "x": 302, - "y": 1640, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_119_2_001": { - "x": 951, - "y": 2593, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_119_extra_001": { - "x": 1954, - "y": 2370, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_11_001": { - "x": 3739, - "y": 1781, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_11_2_001": { - "x": 3148, - "y": 657, - "width": 71, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "player_120_001": { - "x": 161, - "y": 1691, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_120_2_001": { - "x": 831, - "y": 2611, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_121_001": { - "x": 2301, - "y": 1215, - "width": 134, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_121_2_001": { - "x": 1967, - "y": 2059, - "width": 122, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "player_121_extra_001": { - "x": 3148, - "y": 1947, - "width": 100, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "player_122_001": { - "x": 2749, - "y": 1895, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_122_2_001": { - "x": 718, - "y": 2551, - "width": 112, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_123_001": { - "x": 423, - "y": 1681, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_123_2_001": { - "x": 3048, - "y": 1136, - "width": 99, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_124_001": { - "x": 2877, - "y": 1748, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_124_2_001": { - "x": 1451, - "y": 2028, - "width": 118, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "player_125_001": { - "x": 282, - "y": 1761, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_125_2_001": { - "x": 524, - "y": 2559, - "width": 112, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_126_001": { - "x": 1529, - "y": 627, - "width": 136, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_126_2_001": { - "x": 1724, - "y": 1655, - "width": 128, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "player_127_001": { - "x": 1589, - "y": 1839, - "width": 126, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_127_2_001": { - "x": 1843, - "y": 2340, - "width": 110, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "player_127_extra_001": { - "x": 1, - "y": 2679, - "width": 120, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "player_128_001": { - "x": 2750, - "y": 1770, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_128_2_001": { - "x": 3147, - "y": 2610, - "width": 116, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "player_128_extra_001": { - "x": 2164, - "y": 2578, - "width": 84, - "height": 90, - "rotation": 90, - "spritesheet": 2 - }, - "player_129_001": { - "x": 403, - "y": 1802, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_129_2_001": { - "x": 1548, - "y": 2611, - "width": 106, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "player_129_extra_001": { - "x": 641, - "y": 1514, - "width": 79, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "player_12_001": { - "x": 3557, - "y": 1921, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_12_2_001": { - "x": 1423, - "y": 2845, - "width": 85, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "player_130_001": { - "x": 842, - "y": 1686, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_130_2_001": { - "x": 520, - "y": 2672, - "width": 112, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_131_001": { - "x": 721, - "y": 1742, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_131_2_001": { - "x": 1330, - "y": 2188, - "width": 112, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_131_extra_001": { - "x": 3189, - "y": 2844, - "width": 74, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "player_132_001": { - "x": 1, - "y": 1711, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_132_2_001": { - "x": 3043, - "y": 2096, - "width": 110, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "player_133_001": { - "x": 2623, - "y": 1897, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_133_2_001": { - "x": 716, - "y": 2662, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_133_extra_001": { - "x": 143, - "y": 1233, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "player_134_001": { - "x": 2375, - "y": 2023, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_134_2_001": { - "x": 3369, - "y": 2685, - "width": 116, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "player_135_001": { - "x": 2402, - "y": 1654, - "width": 120, - "height": 126, - "rotation": 90, - "spritesheet": 2 - }, - "player_135_2_001": { - "x": 3983, - "y": 1891, - "width": 112, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "player_136_001": { - "x": 1, - "y": 1832, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_136_2_001": { - "x": 3981, - "y": 2351, - "width": 116, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "player_136_extra_001": { - "x": 3671, - "y": 3050, - "width": 62, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "player_137_001": { - "x": 1668, - "y": 171, - "width": 132, - "height": 134, - "rotation": 90, - "spritesheet": 2 - }, - "player_137_2_001": { - "x": 2626, - "y": 1192, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 2 - }, - "player_137_extra_001": { - "x": 3732, - "y": 3099, - "width": 64, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "player_138_001": { - "x": 161, - "y": 1812, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_138_2_001": { - "x": 1843, - "y": 2419, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_138_extra_001": { - "x": 1435, - "y": 2651, - "width": 106, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "player_139_001": { - "x": 282, - "y": 1882, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_139_2_001": { - "x": 942, - "y": 2704, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_139_extra_001": { - "x": 1665, - "y": 2490, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_13_001": { - "x": 3371, - "y": 1961, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_13_2_001": { - "x": 146, - "y": 775, - "width": 64, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "player_140_001": { - "x": 403, - "y": 1923, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_140_2_001": { - "x": 827, - "y": 2722, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_141_001": { - "x": 2624, - "y": 1772, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_141_2_001": { - "x": 3147, - "y": 2727, - "width": 116, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "player_141_extra_001": { - "x": 1114, - "y": 3009, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "player_142_001": { - "x": 1, - "y": 1953, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_142_2_001": { - "x": 912, - "y": 3059, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "player_142_extra_001": { - "x": 2275, - "y": 2538, - "width": 88, - "height": 90, - "rotation": 90, - "spritesheet": 2 - }, - "player_14_001": { - "x": 3249, - "y": 2005, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_14_2_001": { - "x": 2697, - "y": 2789, - "width": 83, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "player_15_001": { - "x": 3371, - "y": 2082, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_15_2_001": { - "x": 1556, - "y": 2243, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_16_001": { - "x": 3249, - "y": 2126, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_16_2_001": { - "x": 2781, - "y": 2828, - "width": 82, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "player_17_001": { - "x": 2867, - "y": 2238, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_17_2_001": { - "x": 1443, - "y": 2293, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_18_001": { - "x": 2742, - "y": 2260, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_18_2_001": { - "x": 1330, - "y": 2301, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_19_001": { - "x": 2597, - "y": 2262, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_19_2_001": { - "x": 1244, - "y": 2057, - "width": 85, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "player_20_001": { - "x": 2459, - "y": 2338, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_20_2_001": { - "x": 544, - "y": 1783, - "width": 95, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "player_21_001": { - "x": 3861, - "y": 1887, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_21_2_001": { - "x": 1117, - "y": 2450, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_22_001": { - "x": 3739, - "y": 1902, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_22_2_001": { - "x": 2944, - "y": 2713, - "width": 97, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "player_23_001": { - "x": 3861, - "y": 2008, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_23_2_001": { - "x": 838, - "y": 2499, - "width": 111, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "player_24_001": { - "x": 3556, - "y": 2042, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_24_2_001": { - "x": 1774, - "y": 2561, - "width": 68, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "player_25_001": { - "x": 3371, - "y": 2203, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_25_2_001": { - "x": 2175, - "y": 2398, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_26_001": { - "x": 3249, - "y": 2247, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_26_2_001": { - "x": 3983, - "y": 2010, - "width": 113, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "player_27_001": { - "x": 3738, - "y": 2023, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_27_2_001": { - "x": 3044, - "y": 1752, - "width": 103, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "player_28_001": { - "x": 3860, - "y": 2129, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_28_2_001": { - "x": 716, - "y": 2773, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_29_001": { - "x": 3556, - "y": 2163, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_29_2_001": { - "x": 1956, - "y": 2174, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_30_001": { - "x": 3371, - "y": 2324, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_30_2_001": { - "x": 698, - "y": 3056, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "player_31_001": { - "x": 3249, - "y": 2368, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_31_2_001": { - "x": 2561, - "y": 1450, - "width": 63, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "player_32_001": { - "x": 3737, - "y": 2144, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_32_2_001": { - "x": 2622, - "y": 2683, - "width": 78, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "player_33_001": { - "x": 3556, - "y": 2284, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_33_2_001": { - "x": 1843, - "y": 2229, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_34_001": { - "x": 3859, - "y": 2250, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_34_2_001": { - "x": 1211, - "y": 2918, - "width": 95, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "player_35_001": { - "x": 3737, - "y": 2265, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_35_2_001": { - "x": 1668, - "y": 2300, - "width": 111, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_36_001": { - "x": 3859, - "y": 2371, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_36_2_001": { - "x": 2636, - "y": 2504, - "width": 65, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "player_37_001": { - "x": 3737, - "y": 2386, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_37_2_001": { - "x": 1442, - "y": 2404, - "width": 111, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "player_38_001": { - "x": 3859, - "y": 2492, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_38_2_001": { - "x": 1227, - "y": 2566, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "player_39_001": { - "x": 3556, - "y": 2405, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_39_2_001": { - "x": 3492, - "y": 2606, - "width": 76, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "player_40_001": { - "x": 3737, - "y": 2507, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_40_2_001": { - "x": 3797, - "y": 3121, - "width": 62, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "player_41_001": { - "x": 3859, - "y": 2613, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_41_2_001": { - "x": 2409, - "y": 2763, - "width": 83, - "height": 84, - "rotation": 90, - "spritesheet": 2 - }, - "player_42_001": { - "x": 3371, - "y": 2445, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_42_2_001": { - "x": 639, - "y": 2307, - "width": 80, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "player_43_001": { - "x": 3556, - "y": 2526, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_43_2_001": { - "x": 2063, - "y": 2459, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_44_001": { - "x": 3737, - "y": 2628, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_44_2_001": { - "x": 3716, - "y": 1335, - "width": 66, - "height": 24, - "rotation": 90, - "spritesheet": 2 - }, - "player_45_001": { - "x": 3859, - "y": 2734, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_45_2_001": { - "x": 1555, - "y": 2354, - "width": 111, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "player_46_001": { - "x": 3248, - "y": 2489, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_46_2_001": { - "x": 263, - "y": 3010, - "width": 96, - "height": 110, - "rotation": 90, - "spritesheet": 2 - }, - "player_47_001": { - "x": 161, - "y": 1933, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_47_2_001": { - "x": 3339, - "y": 3009, - "width": 72, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "player_48_001": { - "x": 282, - "y": 2003, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_48_2_001": { - "x": 2662, - "y": 2872, - "width": 82, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "player_49_001": { - "x": 1, - "y": 2074, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_49_2_001": { - "x": 1159, - "y": 862, - "width": 84, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "player_50_001": { - "x": 161, - "y": 2054, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_50_2_001": { - "x": 3012, - "y": 1441, - "width": 62, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "player_51_001": { - "x": 2125, - "y": 1813, - "width": 124, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_51_2_001": { - "x": 3555, - "y": 2833, - "width": 116, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "player_52_001": { - "x": 2043, - "y": 1353, - "width": 128, - "height": 120, - "rotation": 90, - "spritesheet": 2 - }, - "player_52_2_001": { - "x": 1542, - "y": 2718, - "width": 98, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "player_53_001": { - "x": 1, - "y": 2195, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_53_2_001": { - "x": 640, - "y": 2220, - "width": 86, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "player_54_001": { - "x": 963, - "y": 1687, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_54_2_001": { - "x": 2172, - "y": 2507, - "width": 102, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "player_55_001": { - "x": 842, - "y": 1807, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_55_2_001": { - "x": 2701, - "y": 2623, - "width": 90, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "player_56_001": { - "x": 721, - "y": 1863, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_56_2_001": { - "x": 142, - "y": 1473, - "width": 78, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "player_57_001": { - "x": 403, - "y": 2044, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_57_2_001": { - "x": 2533, - "y": 2581, - "width": 92, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "player_58_001": { - "x": 282, - "y": 2124, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_58_2_001": { - "x": 1017, - "y": 3035, - "width": 94, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "player_59_001": { - "x": 161, - "y": 2175, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_59_2_001": { - "x": 3493, - "y": 2236, - "width": 98, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "player_60_001": { - "x": 1123, - "y": 1743, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_60_2_001": { - "x": 2440, - "y": 2607, - "width": 88, - "height": 90, - "rotation": 90, - "spritesheet": 2 - }, - "player_61_001": { - "x": 963, - "y": 1808, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_61_2_001": { - "x": 2523, - "y": 2731, - "width": 88, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "player_62_001": { - "x": 2092, - "y": 2055, - "width": 122, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_62_2_001": { - "x": 143, - "y": 1386, - "width": 86, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "player_63_001": { - "x": 842, - "y": 1928, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_63_2_001": { - "x": 3027, - "y": 2862, - "width": 78, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "player_64_001": { - "x": 721, - "y": 1984, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_64_2_001": { - "x": 3110, - "y": 2844, - "width": 78, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "player_65_001": { - "x": 403, - "y": 2165, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_65_2_001": { - "x": 2068, - "y": 2176, - "width": 110, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "player_66_001": { - "x": 282, - "y": 2245, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_66_2_001": { - "x": 143, - "y": 1126, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 2 - }, - "player_67_001": { - "x": 161, - "y": 2296, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_67_2_001": { - "x": 2944, - "y": 2867, - "width": 78, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "player_68_001": { - "x": 2632, - "y": 908, - "width": 144, - "height": 120, - "rotation": 90, - "spritesheet": 2 - }, - "player_68_2_001": { - "x": 1003, - "y": 1430, - "width": 136, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "player_69_001": { - "x": 1, - "y": 2316, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_69_2_001": { - "x": 1230, - "y": 2344, - "width": 110, - "height": 98, - "rotation": 90, - "spritesheet": 2 - }, - "player_70_001": { - "x": 1, - "y": 2437, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_70_2_001": { - "x": 2345, - "y": 2642, - "width": 86, - "height": 88, - "rotation": 90, - "spritesheet": 2 - }, - "player_71_001": { - "x": 1123, - "y": 1864, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_71_2_001": { - "x": 510, - "y": 2783, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_72_001": { - "x": 963, - "y": 1929, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_72_2_001": { - "x": 3486, - "y": 2853, - "width": 70, - "height": 68, - "rotation": 90, - "spritesheet": 2 - }, - "player_73_001": { - "x": 842, - "y": 2049, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_73_2_001": { - "x": 922, - "y": 2967, - "width": 91, - "height": 94, - "rotation": 90, - "spritesheet": 2 - }, - "player_74_001": { - "x": 1459, - "y": 1852, - "width": 126, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_74_2_001": { - "x": 963, - "y": 2387, - "width": 118, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "player_75_001": { - "x": 721, - "y": 2105, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_75_2_001": { - "x": 1668, - "y": 139, - "width": 25, - "height": 26, - "rotation": 0, - "spritesheet": 2 - }, - "player_76_001": { - "x": 403, - "y": 2286, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_76_2_001": { - "x": 638, - "y": 2390, - "width": 80, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "player_77_001": { - "x": 282, - "y": 2366, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_77_2_001": { - "x": 1227, - "y": 2665, - "width": 98, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "player_78_001": { - "x": 161, - "y": 2417, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_78_2_001": { - "x": 2068, - "y": 2263, - "width": 110, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "player_79_001": { - "x": 1330, - "y": 1950, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_79_2_001": { - "x": 3023, - "y": 2933, - "width": 76, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "player_80_001": { - "x": 1716, - "y": 1869, - "width": 126, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_80_2_001": { - "x": 3043, - "y": 1977, - "width": 118, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "player_81_001": { - "x": 1123, - "y": 1985, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_81_2_001": { - "x": 3796, - "y": 3184, - "width": 50, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "player_82_001": { - "x": 963, - "y": 2050, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_82_2_001": { - "x": 143, - "y": 1149, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 2 - }, - "player_83_001": { - "x": 842, - "y": 2170, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_83_2_001": { - "x": 791, - "y": 3082, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "player_84_001": { - "x": 721, - "y": 2226, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_84_2_001": { - "x": 143, - "y": 1172, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 2 - }, - "player_85_001": { - "x": 403, - "y": 2407, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_85_2_001": { - "x": 389, - "y": 2839, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_86_001": { - "x": 282, - "y": 2487, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_86_2_001": { - "x": 1331, - "y": 138, - "width": 108, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "player_87_001": { - "x": 159, - "y": 2538, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_87_2_001": { - "x": 270, - "y": 2899, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_88_001": { - "x": 1, - "y": 2558, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_88_2_001": { - "x": 152, - "y": 2914, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_89_001": { - "x": 1119, - "y": 2106, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_89_2_001": { - "x": 1952, - "y": 2479, - "width": 108, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_90_001": { - "x": 1981, - "y": 1823, - "width": 120, - "height": 124, - "rotation": 90, - "spritesheet": 2 - }, - "player_90_2_001": { - "x": 633, - "y": 2705, - "width": 82, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "player_91_001": { - "x": 963, - "y": 2171, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_91_2_001": { - "x": 3432, - "y": 997, - "width": 86, - "height": 16, - "rotation": 90, - "spritesheet": 2 - }, - "player_92_001": { - "x": 1973, - "y": 635, - "width": 152, - "height": 138, - "rotation": 90, - "spritesheet": 2 - }, - "player_92_2_001": { - "x": 2635, - "y": 619, - "width": 144, - "height": 118, - "rotation": 90, - "spritesheet": 2 - }, - "player_93_001": { - "x": 314, - "y": 896, - "width": 142, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_93_2_001": { - "x": 1128, - "y": 1585, - "width": 132, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "player_94_001": { - "x": 169, - "y": 919, - "width": 142, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_94_2_001": { - "x": 1161, - "y": 729, - "width": 132, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "player_95_001": { - "x": 842, - "y": 2291, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_95_2_001": { - "x": 3492, - "y": 2683, - "width": 76, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "player_96_001": { - "x": 720, - "y": 2347, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_96_2_001": { - "x": 1238, - "y": 2233, - "width": 91, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_97_001": { - "x": 1654, - "y": 984, - "width": 140, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_97_2_001": { - "x": 1469, - "y": 1428, - "width": 134, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "player_97_extra_001": { - "x": 1433, - "y": 2758, - "width": 98, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "player_98_001": { - "x": 403, - "y": 2528, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "player_98_2_001": { - "x": 2701, - "y": 2714, - "width": 84, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "player_98_extra_001": { - "x": 2871, - "y": 2722, - "width": 82, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "player_99_001": { - "x": 2328, - "y": 959, - "width": 136, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_99_2_001": { - "x": 2284, - "y": 2463, - "width": 102, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "player_99_extra_001": { - "x": 3148, - "y": 2113, - "width": 100, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_00_001": { - "x": 1, - "y": 1056, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_00_2_001": { - "x": 3678, - "y": 2464, - "width": 58, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_01_001": { - "x": 167, - "y": 1040, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_01_2_001": { - "x": 3555, - "y": 2981, - "width": 72, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_02_001": { - "x": 1194, - "y": 794, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_02_2_001": { - "x": 1713, - "y": 1990, - "width": 123, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_03_001": { - "x": 1010, - "y": 914, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_03_2_001": { - "x": 3983, - "y": 2124, - "width": 113, - "height": 112, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_04_001": { - "x": 865, - "y": 917, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_04_2_001": { - "x": 3982, - "y": 2238, - "width": 113, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_05_001": { - "x": 722, - "y": 924, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_05_2_001": { - "x": 1240, - "y": 2142, - "width": 89, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_06_001": { - "x": 502, - "y": 996, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_06_2_001": { - "x": 2334, - "y": 590, - "width": 131, - "height": 132, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_07_001": { - "x": 309, - "y": 1102, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_07_2_001": { - "x": 3052, - "y": 1039, - "width": 95, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_08_001": { - "x": 502, - "y": 1137, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_08_2_001": { - "x": 1997, - "y": 1698, - "width": 127, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_09_001": { - "x": 166, - "y": 1181, - "width": 141, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_09_2_001": { - "x": 2112, - "y": 183, - "width": 53, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_10_001": { - "x": 1, - "y": 1429, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_10_2_001": { - "x": 3148, - "y": 1744, - "width": 101, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_11_001": { - "x": 306, - "y": 1358, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_11_2_001": { - "x": 2529, - "y": 1679, - "width": 94, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_12_001": { - "x": 162, - "y": 1409, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_12_2_001": { - "x": 1880, - "y": 1421, - "width": 132, - "height": 132, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_13_001": { - "x": 1357, - "y": 796, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_13_2_001": { - "x": 2067, - "y": 1220, - "width": 96, - "height": 132, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_14_001": { - "x": 1194, - "y": 935, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_14_2_001": { - "x": 1330, - "y": 1518, - "width": 112, - "height": 132, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_15_001": { - "x": 1829, - "y": 793, - "width": 142, - "height": 142, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_15_2_001": { - "x": 1117, - "y": 2337, - "width": 112, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_16_001": { - "x": 2754, - "y": 755, - "width": 132, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_16_2_001": { - "x": 397, - "y": 2732, - "width": 112, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_17_001": { - "x": 2753, - "y": 1223, - "width": 132, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_17_2_001": { - "x": 2871, - "y": 2805, - "width": 72, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_18_001": { - "x": 1007, - "y": 1055, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_18_2_001": { - "x": 1460, - "y": 1723, - "width": 128, - "height": 128, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_19_001": { - "x": 864, - "y": 1058, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_19_2_001": { - "x": 2299, - "y": 1340, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_20_001": { - "x": 722, - "y": 1065, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_20_2_001": { - "x": 2164, - "y": 1383, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_21_001": { - "x": 501, - "y": 1278, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_21_2_001": { - "x": 467, - "y": 668, - "width": 36, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_22_001": { - "x": 303, - "y": 1499, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_22_2_001": { - "x": 2430, - "y": 1392, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_22_extra_001": { - "x": 2943, - "y": 2934, - "width": 76, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_23_001": { - "x": 161, - "y": 1550, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_23_2_001": { - "x": 3456, - "y": 738, - "width": 85, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_23_extra_001": { - "x": 963, - "y": 2292, - "width": 118, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_24_001": { - "x": 1, - "y": 1570, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_24_2_001": { - "x": 2295, - "y": 1471, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_24_extra_001": { - "x": 1842, - "y": 2684, - "width": 90, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_25_001": { - "x": 1517, - "y": 809, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_25_2_001": { - "x": 2426, - "y": 1523, - "width": 130, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_25_extra_001": { - "x": 2531, - "y": 2642, - "width": 88, - "height": 90, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_26_001": { - "x": 1355, - "y": 937, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_26_2_001": { - "x": 2393, - "y": 1775, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_27_001": { - "x": 1193, - "y": 1076, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_27_2_001": { - "x": 2612, - "y": 2774, - "width": 71, - "height": 84, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_28_001": { - "x": 1005, - "y": 1196, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_28_2_001": { - "x": 1878, - "y": 1554, - "width": 130, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_28_extra_001": { - "x": 1570, - "y": 2890, - "width": 46, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_29_001": { - "x": 863, - "y": 1199, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_29_2_001": { - "x": 1745, - "y": 1425, - "width": 132, - "height": 132, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_30_001": { - "x": 721, - "y": 1206, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_30_2_001": { - "x": 3148, - "y": 1846, - "width": 100, - "height": 100, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_31_001": { - "x": 1972, - "y": 927, - "width": 138, - "height": 138, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_31_2_001": { - "x": 1, - "y": 3013, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_32_001": { - "x": 500, - "y": 1419, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_32_2_001": { - "x": 2266, - "y": 1800, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_33_001": { - "x": 1955, - "y": 1066, - "width": 140, - "height": 132, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_33_2_001": { - "x": 1465, - "y": 1517, - "width": 132, - "height": 122, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_34_001": { - "x": 1016, - "y": 771, - "width": 142, - "height": 142, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_34_2_001": { - "x": 995, - "y": 1515, - "width": 106, - "height": 132, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_35_001": { - "x": 867, - "y": 775, - "width": 142, - "height": 141, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_35_2_001": { - "x": 960, - "y": 2480, - "width": 112, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_35_extra_001": { - "x": 143, - "y": 1355, - "width": 30, - "height": 19, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_36_001": { - "x": 1658, - "y": 843, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_36_2_001": { - "x": 1655, - "y": 2672, - "width": 98, - "height": 97, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_37_001": { - "x": 1513, - "y": 950, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_37_2_001": { - "x": 524, - "y": 1995, - "width": 116, - "height": 115, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_38_001": { - "x": 504, - "y": 710, - "width": 144, - "height": 144, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_38_2_001": { - "x": 500, - "y": 2894, - "width": 110, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_39_001": { - "x": 722, - "y": 783, - "width": 142, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_39_2_001": { - "x": 2885, - "y": 1473, - "width": 94, - "height": 126, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_40_001": { - "x": 172, - "y": 691, - "width": 144, - "height": 144, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_40_2_001": { - "x": 1124, - "y": 1684, - "width": 132, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_41_001": { - "x": 1354, - "y": 1078, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_41_2_001": { - "x": 3042, - "y": 2422, - "width": 104, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_42_001": { - "x": 2755, - "y": 614, - "width": 131, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_42_2_001": { - "x": 1604, - "y": 1436, - "width": 123, - "height": 132, - "rotation": 90, - "spritesheet": 2 - }, - "player_ball_43_001": { - "x": 1814, - "y": 936, - "width": 140, - "height": 140, - "rotation": 0, - "spritesheet": 2 - }, - "player_ball_43_2_001": { - "x": 3148, - "y": 1401, - "width": 115, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "portal_01_back_001": { - "x": 2165, - "y": 306, - "width": 84, - "height": 306, - "rotation": 90, - "spritesheet": 2 - }, - "portal_01_front_001": { - "x": 2468, - "y": 409, - "width": 96, - "height": 300, - "rotation": 90, - "spritesheet": 2 - }, - "portal_02_back_001": { - "x": 1803, - "y": 384, - "width": 84, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_02_front_001": { - "x": 2165, - "y": 493, - "width": 96, - "height": 300, - "rotation": 90, - "spritesheet": 2 - }, - "portal_03_back_001": { - "x": 3249, - "y": 410, - "width": 100, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_03_front_001": { - "x": 2166, - "y": 171, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_04_back_001": { - "x": 1359, - "y": 110, - "width": 100, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_04_front_001": { - "x": 2507, - "y": 171, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_05_back_001": { - "x": 3249, - "y": 8, - "width": 200, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_05_front_001": { - "x": 3568, - "y": 1, - "width": 174, - "height": 362, - "rotation": 90, - "spritesheet": 2 - }, - "portal_06_back_001": { - "x": 3249, - "y": 209, - "width": 200, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_06_front_001": { - "x": 1803, - "y": 8, - "width": 174, - "height": 362, - "rotation": 90, - "spritesheet": 2 - }, - "portal_07_back_001": { - "x": 1022, - "y": 111, - "width": 100, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_07_front_001": { - "x": 2887, - "y": 314, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_08_back_001": { - "x": 2165, - "y": 391, - "width": 101, - "height": 302, - "rotation": 90, - "spritesheet": 2 - }, - "portal_08_front_001": { - "x": 3558, - "y": 176, - "width": 124, - "height": 358, - "rotation": 90, - "spritesheet": 2 - }, - "portal_09_back_001": { - "x": 2472, - "y": 306, - "width": 102, - "height": 302, - "rotation": 90, - "spritesheet": 2 - }, - "portal_09_front_001": { - "x": 3558, - "y": 301, - "width": 121, - "height": 356, - "rotation": 90, - "spritesheet": 2 - }, - "portal_10_back_001": { - "x": 1358, - "y": 211, - "width": 100, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_10_front_001": { - "x": 3558, - "y": 423, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_11_back_001": { - "x": 2887, - "y": 544, - "width": 112, - "height": 288, - "rotation": 90, - "spritesheet": 2 - }, - "portal_11_front_001": { - "x": 2166, - "y": 8, - "width": 162, - "height": 360, - "rotation": 90, - "spritesheet": 2 - }, - "portal_12_back_001": { - "x": 2466, - "y": 506, - "width": 112, - "height": 288, - "rotation": 90, - "spritesheet": 2 - }, - "portal_12_front_001": { - "x": 2527, - "y": 8, - "width": 162, - "height": 360, - "rotation": 90, - "spritesheet": 2 - }, - "portal_13_back_001": { - "x": 1803, - "y": 183, - "width": 100, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_13_front_001": { - "x": 1, - "y": 10, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_14_back_001": { - "x": 1803, - "y": 284, - "width": 99, - "height": 308, - "rotation": 90, - "spritesheet": 2 - }, - "portal_14_front_001": { - "x": 342, - "y": 10, - "width": 134, - "height": 340, - "rotation": 90, - "spritesheet": 2 - }, - "portal_15_back_001": { - "x": 1022, - "y": 10, - "width": 100, - "height": 336, - "rotation": 90, - "spritesheet": 2 - }, - "portal_15_front_001": { - "x": 2888, - "y": 8, - "width": 152, - "height": 360, - "rotation": 90, - "spritesheet": 2 - }, - "portal_16_back_001": { - "x": 1359, - "y": 10, - "width": 99, - "height": 334, - "rotation": 90, - "spritesheet": 2 - }, - "portal_16_front_001": { - "x": 2888, - "y": 161, - "width": 152, - "height": 360, - "rotation": 90, - "spritesheet": 2 - }, - "portal_17_back_001": { - "x": 2887, - "y": 449, - "width": 94, - "height": 298, - "rotation": 90, - "spritesheet": 2 - }, - "portal_17_front_001": { - "x": 683, - "y": 10, - "width": 134, - "height": 338, - "rotation": 90, - "spritesheet": 2 - }, - "robot_01_01_001": { - "x": 1667, - "y": 2411, - "width": 110, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_01_2_001": { - "x": 3677, - "y": 2685, - "width": 96, - "height": 56, - "rotation": 90, - "spritesheet": 2 - }, - "robot_01_01_glow_001": { - "x": 841, - "y": 2412, - "width": 118, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_02_001": { - "x": 122, - "y": 2032, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_02_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_01_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_04_001": { - "x": 122, - "y": 2791, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_01_04_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_01_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_01_001": { - "x": 1449, - "y": 2147, - "width": 116, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_01_2_001": { - "x": 1496, - "y": 994, - "width": 44, - "height": 16, - "rotation": 90, - "spritesheet": 2 - }, - "robot_02_01_glow_001": { - "x": 2880, - "y": 1659, - "width": 126, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_02_001": { - "x": 122, - "y": 2087, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_02_2_001": { - "x": 1335, - "y": 1072, - "width": 14, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "robot_02_02_glow_001": { - "x": 3963, - "y": 3287, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_02_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_03_2_001": { - "x": 1334, - "y": 1170, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_04_001": { - "x": 119, - "y": 2901, - "width": 52, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_02_04_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_02_04_glow_001": { - "x": 3630, - "y": 2930, - "width": 60, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_01_001": { - "x": 3047, - "y": 1247, - "width": 120, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_01_2_001": { - "x": 640, - "y": 1916, - "width": 104, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_01_glow_001": { - "x": 2009, - "y": 1591, - "width": 128, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_02_001": { - "x": 122, - "y": 2142, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_02_2_001": { - "x": 112, - "y": 3060, - "width": 32, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_03_001": { - "x": 1336, - "y": 894, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_03_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_03_04_001": { - "x": 114, - "y": 2954, - "width": 52, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_04_2_001": { - "x": 3148, - "y": 788, - "width": 46, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "robot_03_04_glow_001": { - "x": 3002, - "y": 1832, - "width": 62, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "robot_04_01_001": { - "x": 280, - "y": 2608, - "width": 120, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_01_2_001": { - "x": 817, - "y": 2995, - "width": 94, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_01_glow_001": { - "x": 2144, - "y": 1514, - "width": 128, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_02_001": { - "x": 122, - "y": 2197, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_02_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_04_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_03_2_001": { - "x": 1334, - "y": 1170, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_04_001": { - "x": 1082, - "y": 2391, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_04_04_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_04_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_01_001": { - "x": 3042, - "y": 2624, - "width": 104, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_01_2_001": { - "x": 1073, - "y": 2580, - "width": 42, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_01_glow_001": { - "x": 276, - "y": 2796, - "width": 112, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_02_001": { - "x": 122, - "y": 2252, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_02_2_001": { - "x": 143, - "y": 1254, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_05_03_001": { - "x": 142, - "y": 1552, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_03_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_04_001": { - "x": 1084, - "y": 2163, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_05_04_2_001": { - "x": 3712, - "y": 1643, - "width": 28, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_05_04_glow_001": { - "x": 4031, - "y": 3156, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_01_001": { - "x": 2266, - "y": 1701, - "width": 126, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_01_2_001": { - "x": 3796, - "y": 3235, - "width": 52, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_01_glow_001": { - "x": 1773, - "y": 1257, - "width": 134, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_02_001": { - "x": 1084, - "y": 1687, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_02_2_001": { - "x": 143, - "y": 1317, - "width": 18, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "robot_06_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_06_03_001": { - "x": 142, - "y": 1552, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_03_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_04_001": { - "x": 1084, - "y": 2220, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_06_04_2_001": { - "x": 3558, - "y": 91, - "width": 6, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "robot_06_04_glow_001": { - "x": 4031, - "y": 3199, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_01_001": { - "x": 1140, - "y": 1472, - "width": 132, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_01_2_001": { - "x": 147, - "y": 3025, - "width": 110, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_01_glow_001": { - "x": 1795, - "y": 1077, - "width": 140, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_02_001": { - "x": 3912, - "y": 3313, - "width": 50, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_02_2_001": { - "x": 1335, - "y": 945, - "width": 18, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_02_glow_001": { - "x": 3678, - "y": 2401, - "width": 58, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_03_001": { - "x": 142, - "y": 1603, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_04_001": { - "x": 122, - "y": 2552, - "width": 62, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_07_04_2_001": { - "x": 4056, - "y": 1387, - "width": 24, - "height": 18, - "rotation": 0, - "spritesheet": 2 - }, - "robot_07_04_glow_001": { - "x": 3627, - "y": 3062, - "width": 70, - "height": 42, - "rotation": 90, - "spritesheet": 2 - }, - "robot_08_01_001": { - "x": 3981, - "y": 2802, - "width": 114, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_01_2_001": { - "x": 1679, - "y": 2821, - "width": 48, - "height": 56, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_01_glow_001": { - "x": 3557, - "y": 1705, - "width": 122, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_02_001": { - "x": 1084, - "y": 1742, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_02_2_001": { - "x": 1496, - "y": 1039, - "width": 16, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_08_03_001": { - "x": 142, - "y": 1654, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_04_001": { - "x": 1082, - "y": 2446, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_08_04_2_001": { - "x": 1814, - "y": 890, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_08_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_01_001": { - "x": 3369, - "y": 2802, - "width": 116, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_01_2_001": { - "x": 3045, - "y": 1637, - "width": 102, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_01_extra_001": { - "x": 3042, - "y": 2719, - "width": 104, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_01_glow_001": { - "x": 3750, - "y": 952, - "width": 124, - "height": 148, - "rotation": 90, - "spritesheet": 2 - }, - "robot_09_02_001": { - "x": 1084, - "y": 1742, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_02_2_001": { - "x": 1496, - "y": 1039, - "width": 16, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_09_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_03_2_001": { - "x": 1799, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_04_001": { - "x": 122, - "y": 2791, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_09_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_09_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_01_001": { - "x": 3053, - "y": 884, - "width": 154, - "height": 94, - "rotation": 90, - "spritesheet": 2 - }, - "robot_10_01_2_001": { - "x": 2990, - "y": 2227, - "width": 94, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "robot_10_01_glow_001": { - "x": 1194, - "y": 622, - "width": 162, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_02_001": { - "x": 3912, - "y": 3313, - "width": 50, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_02_2_001": { - "x": 1335, - "y": 945, - "width": 18, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_02_glow_001": { - "x": 3678, - "y": 2401, - "width": 58, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_04_001": { - "x": 122, - "y": 2552, - "width": 62, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_10_04_2_001": { - "x": 4056, - "y": 1387, - "width": 24, - "height": 18, - "rotation": 0, - "spritesheet": 2 - }, - "robot_10_04_glow_001": { - "x": 3627, - "y": 3062, - "width": 70, - "height": 42, - "rotation": 90, - "spritesheet": 2 - }, - "robot_11_01_001": { - "x": 1843, - "y": 2528, - "width": 108, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_01_2_001": { - "x": 3148, - "y": 2032, - "width": 100, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_01_glow_001": { - "x": 3733, - "y": 2963, - "width": 116, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_02_001": { - "x": 1084, - "y": 1742, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_02_2_001": { - "x": 1496, - "y": 1039, - "width": 16, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_11_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_04_001": { - "x": 1082, - "y": 2446, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_11_04_2_001": { - "x": 1814, - "y": 890, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_11_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_01_001": { - "x": 2518, - "y": 1853, - "width": 124, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "robot_12_01_2_001": { - "x": 3485, - "y": 3108, - "width": 68, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_01_glow_001": { - "x": 2334, - "y": 723, - "width": 131, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_02_001": { - "x": 1084, - "y": 1742, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_02_2_001": { - "x": 1496, - "y": 1039, - "width": 16, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_12_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_04_001": { - "x": 122, - "y": 2677, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_12_04_2_001": { - "x": 3186, - "y": 449, - "width": 32, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "robot_12_04_glow_001": { - "x": 3966, - "y": 3201, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_01_001": { - "x": 3557, - "y": 1816, - "width": 122, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_01_2_001": { - "x": 2961, - "y": 2600, - "width": 112, - "height": 80, - "rotation": 90, - "spritesheet": 2 - }, - "robot_13_01_extra_001": { - "x": 1335, - "y": 1057, - "width": 18, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_01_glow_001": { - "x": 2753, - "y": 1364, - "width": 131, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_02_001": { - "x": 1618, - "y": 2868, - "width": 44, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "robot_13_02_2_001": { - "x": 325, - "y": 505, - "width": 18, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "robot_13_02_glow_001": { - "x": 3418, - "y": 2909, - "width": 52, - "height": 66, - "rotation": 90, - "spritesheet": 2 - }, - "robot_13_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_03_2_001": { - "x": 1799, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_04_001": { - "x": 122, - "y": 1849, - "width": 64, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "robot_13_04_2_001": { - "x": 143, - "y": 1218, - "width": 22, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_13_04_glow_001": { - "x": 3250, - "y": 3016, - "width": 72, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_01_001": { - "x": 858, - "y": 1581, - "width": 132, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_01_2_001": { - "x": 2885, - "y": 1374, - "width": 126, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_01_glow_001": { - "x": 1652, - "y": 1115, - "width": 140, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_02_001": { - "x": 3678, - "y": 2523, - "width": 44, - "height": 58, - "rotation": 90, - "spritesheet": 2 - }, - "robot_14_02_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_02_glow_001": { - "x": 3248, - "y": 3063, - "width": 52, - "height": 66, - "rotation": 90, - "spritesheet": 2 - }, - "robot_14_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_03_2_001": { - "x": 3899, - "y": 423, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_04_001": { - "x": 122, - "y": 2791, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_14_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_14_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_15_01_001": { - "x": 1229, - "y": 2455, - "width": 110, - "height": 98, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_01_2_001": { - "x": 2440, - "y": 2534, - "width": 72, - "height": 92, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_01_glow_001": { - "x": 2516, - "y": 1978, - "width": 117, - "height": 106, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_02_001": { - "x": 3850, - "y": 3171, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_02_2_001": { - "x": 143, - "y": 1336, - "width": 18, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_02_glow_001": { - "x": 3412, - "y": 3023, - "width": 56, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_15_03_2_001": { - "x": 1799, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_15_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_15_04_001": { - "x": 122, - "y": 1849, - "width": 64, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "robot_15_04_2_001": { - "x": 143, - "y": 1218, - "width": 22, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_15_04_glow_001": { - "x": 3250, - "y": 3016, - "width": 72, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_01_001": { - "x": 3981, - "y": 2584, - "width": 114, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_01_2_001": { - "x": 381, - "y": 2950, - "width": 110, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_01_extra_001": { - "x": 1496, - "y": 943, - "width": 50, - "height": 16, - "rotation": 90, - "spritesheet": 2 - }, - "robot_16_01_glow_001": { - "x": 3370, - "y": 2566, - "width": 121, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_02_001": { - "x": 1084, - "y": 1797, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_02_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_02_glow_001": { - "x": 4050, - "y": 1695, - "width": 45, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_03_001": { - "x": 142, - "y": 1603, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_16_04_001": { - "x": 122, - "y": 2362, - "width": 52, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "robot_16_04_2_001": { - "x": 112, - "y": 3109, - "width": 46, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_16_04_glow_001": { - "x": 1728, - "y": 2796, - "width": 60, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_01_001": { - "x": 1531, - "y": 494, - "width": 132, - "height": 134, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_01_2_001": { - "x": 1586, - "y": 1960, - "width": 126, - "height": 120, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_01_extra_001": { - "x": 3915, - "y": 3191, - "width": 50, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_01_glow_001": { - "x": 503, - "y": 855, - "width": 140, - "height": 142, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_02_001": { - "x": 3850, - "y": 3171, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_02_2_001": { - "x": 143, - "y": 1336, - "width": 18, - "height": 20, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_02_glow_001": { - "x": 3412, - "y": 3023, - "width": 56, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_03_001": { - "x": 142, - "y": 1603, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_17_04_001": { - "x": 122, - "y": 2362, - "width": 52, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_04_2_001": { - "x": 112, - "y": 3109, - "width": 46, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_17_04_glow_001": { - "x": 1728, - "y": 2796, - "width": 60, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_01_001": { - "x": 2753, - "y": 1477, - "width": 126, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_01_2_001": { - "x": 1792, - "y": 2287, - "width": 108, - "height": 50, - "rotation": 90, - "spritesheet": 2 - }, - "robot_18_01_glow_001": { - "x": 3148, - "y": 1016, - "width": 134, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "robot_18_02_001": { - "x": 2944, - "y": 2812, - "width": 54, - "height": 82, - "rotation": 90, - "spritesheet": 2 - }, - "robot_18_02_2_001": { - "x": 1148, - "y": 1080, - "width": 44, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_02_glow_001": { - "x": 3493, - "y": 2430, - "width": 62, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_03_001": { - "x": 3432, - "y": 1084, - "width": 16, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_03_2_001": { - "x": 3558, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_03_glow_001": { - "x": 3716, - "y": 1402, - "width": 24, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_18_04_001": { - "x": 3012, - "y": 1504, - "width": 59, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_18_04_2_001": { - "x": 3712, - "y": 1658, - "width": 42, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "robot_18_04_glow_001": { - "x": 462, - "y": 799, - "width": 67, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "robot_19_01_001": { - "x": 184, - "y": 226, - "width": 176, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_01_2_001": { - "x": 1737, - "y": 1558, - "width": 130, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_01_glow_001": { - "x": 3899, - "y": 975, - "width": 184, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_02_001": { - "x": 3912, - "y": 3313, - "width": 50, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_02_2_001": { - "x": 1335, - "y": 1009, - "width": 18, - "height": 30, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_02_glow_001": { - "x": 3678, - "y": 2401, - "width": 58, - "height": 62, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_03_001": { - "x": 1498, - "y": 796, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_03_2_001": { - "x": 3558, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_04_001": { - "x": 122, - "y": 2615, - "width": 61, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_19_04_2_001": { - "x": 149, - "y": 606, - "width": 23, - "height": 18, - "rotation": 0, - "spritesheet": 2 - }, - "robot_19_04_glow_001": { - "x": 3485, - "y": 2924, - "width": 69, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_01_001": { - "x": 174, - "y": 594, - "width": 146, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_01_2_001": { - "x": 1330, - "y": 1429, - "width": 134, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_01_glow_001": { - "x": 3557, - "y": 1600, - "width": 154, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_02_001": { - "x": 1679, - "y": 2878, - "width": 46, - "height": 56, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_02_2_001": { - "x": 122, - "y": 2415, - "width": 38, - "height": 38, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_02_glow_001": { - "x": 3850, - "y": 3063, - "width": 54, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "robot_20_03_001": { - "x": 144, - "y": 1032, - "width": 22, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_03_2_001": { - "x": 1498, - "y": 896, - "width": 18, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_03_glow_001": { - "x": 473, - "y": 558, - "width": 30, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_04_001": { - "x": 1084, - "y": 2101, - "width": 61, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_20_04_2_001": { - "x": 3750, - "y": 894, - "width": 33, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "robot_20_04_glow_001": { - "x": 3485, - "y": 2967, - "width": 69, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_01_001": { - "x": 524, - "y": 2112, - "width": 115, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_01_2_001": { - "x": 1439, - "y": 2481, - "width": 109, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_01_glow_001": { - "x": 1968, - "y": 1944, - "width": 123, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_02_001": { - "x": 122, - "y": 2307, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_02_2_001": { - "x": 3750, - "y": 915, - "width": 32, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_02_glow_001": { - "x": 4026, - "y": 3328, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_21_03_001": { - "x": 4084, - "y": 1005, - "width": 10, - "height": 26, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_03_2_001": { - "x": 1814, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_04_001": { - "x": 3679, - "y": 1975, - "width": 59, - "height": 36, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_04_2_001": { - "x": 1331, - "y": 111, - "width": 27, - "height": 26, - "rotation": 0, - "spritesheet": 2 - }, - "robot_21_04_glow_001": { - "x": 2096, - "y": 1175, - "width": 67, - "height": 44, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_01_001": { - "x": 3147, - "y": 2492, - "width": 117, - "height": 98, - "rotation": 90, - "spritesheet": 2 - }, - "robot_22_01_2_001": { - "x": 1952, - "y": 2588, - "width": 102, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_01_glow_001": { - "x": 2624, - "y": 1665, - "width": 125, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_02_001": { - "x": 1728, - "y": 2843, - "width": 42, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "robot_22_02_2_001": { - "x": 3716, - "y": 1461, - "width": 24, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_02_glow_001": { - "x": 3485, - "y": 3010, - "width": 50, - "height": 68, - "rotation": 90, - "spritesheet": 2 - }, - "robot_22_03_001": { - "x": 142, - "y": 1603, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_03_2_001": { - "x": 3558, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_04_001": { - "x": 3679, - "y": 1936, - "width": 59, - "height": 38, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_04_2_001": { - "x": 143, - "y": 1195, - "width": 22, - "height": 22, - "rotation": 0, - "spritesheet": 2 - }, - "robot_22_04_glow_001": { - "x": 2096, - "y": 1128, - "width": 67, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_01_001": { - "x": 3045, - "y": 1521, - "width": 115, - "height": 102, - "rotation": 90, - "spritesheet": 2 - }, - "robot_23_01_2_001": { - "x": 621, - "y": 2814, - "width": 109, - "height": 94, - "rotation": 90, - "spritesheet": 2 - }, - "robot_23_01_glow_001": { - "x": 1843, - "y": 1986, - "width": 123, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_02_001": { - "x": 1423, - "y": 2916, - "width": 54, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_02_2_001": { - "x": 143, - "y": 1275, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_02_glow_001": { - "x": 3670, - "y": 3113, - "width": 62, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "robot_23_03_001": { - "x": 1498, - "y": 796, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_03_2_001": { - "x": 3558, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_04_001": { - "x": 1152, - "y": 1014, - "width": 65, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "robot_23_04_2_001": { - "x": 3712, - "y": 1701, - "width": 26, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "robot_23_04_glow_001": { - "x": 2366, - "y": 2593, - "width": 73, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_01_001": { - "x": 1119, - "y": 2227, - "width": 109, - "height": 118, - "rotation": 90, - "spritesheet": 2 - }, - "robot_24_01_2_001": { - "x": 1754, - "y": 2725, - "width": 87, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_01_glow_001": { - "x": 2769, - "y": 487, - "width": 117, - "height": 126, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_02_001": { - "x": 1084, - "y": 1742, - "width": 38, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_02_2_001": { - "x": 1335, - "y": 1040, - "width": 16, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "robot_24_02_glow_001": { - "x": 3849, - "y": 3267, - "width": 46, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "robot_24_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_03_2_001": { - "x": 1814, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_04_001": { - "x": 119, - "y": 2846, - "width": 54, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "robot_24_04_2_001": { - "x": 1814, - "y": 905, - "width": 14, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "robot_24_04_glow_001": { - "x": 1933, - "y": 2722, - "width": 62, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_01_001": { - "x": 2880, - "y": 1568, - "width": 126, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_01_2_001": { - "x": 1, - "y": 2748, - "width": 120, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_01_glow_001": { - "x": 1332, - "y": 1330, - "width": 136, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_02_001": { - "x": 1617, - "y": 2913, - "width": 42, - "height": 56, - "rotation": 90, - "spritesheet": 2 - }, - "robot_25_02_2_001": { - "x": 1084, - "y": 1960, - "width": 38, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_02_glow_001": { - "x": 3799, - "y": 3056, - "width": 50, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_03_2_001": { - "x": 1814, - "y": 843, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_04_001": { - "x": 122, - "y": 2454, - "width": 61, - "height": 36, - "rotation": 90, - "spritesheet": 2 - }, - "robot_25_04_2_001": { - "x": 1336, - "y": 794, - "width": 20, - "height": 22, - "rotation": 0, - "spritesheet": 2 - }, - "robot_25_04_glow_001": { - "x": 1148, - "y": 1159, - "width": 71, - "height": 44, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_01_001": { - "x": 1330, - "y": 1831, - "width": 118, - "height": 128, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_01_2_001": { - "x": 3264, - "y": 2786, - "width": 84, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_01_glow_001": { - "x": 1666, - "y": 534, - "width": 126, - "height": 136, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_02_001": { - "x": 3315, - "y": 3082, - "width": 48, - "height": 66, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_02_2_001": { - "x": 1509, - "y": 2890, - "width": 42, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_02_glow_001": { - "x": 3189, - "y": 2919, - "width": 56, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_03_001": { - "x": 873, - "y": 496, - "width": 18, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "robot_26_03_2_001": { - "x": 1799, - "y": 890, - "width": 14, - "height": 46, - "rotation": 0, - "spritesheet": 2 - }, - "robot_26_03_glow_001": { - "x": 3148, - "y": 729, - "width": 26, - "height": 58, - "rotation": 0, - "spritesheet": 2 - }, - "robot_26_04_001": { - "x": 3012, - "y": 1564, - "width": 58, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_04_2_001": { - "x": 3148, - "y": 835, - "width": 38, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "robot_26_04_glow_001": { - "x": 1152, - "y": 947, - "width": 66, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "ship_01_001": { - "x": 722, - "y": 558, - "width": 149, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "ship_01_2_001": { - "x": 1800, - "y": 2081, - "width": 96, - "height": 42, - "rotation": 90, - "spritesheet": 2 - }, - "ship_02_001": { - "x": 872, - "y": 627, - "width": 149, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_02_2_001": { - "x": 637, - "y": 2592, - "width": 112, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "ship_03_001": { - "x": 2466, - "y": 694, - "width": 167, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_03_2_001": { - "x": 3249, - "y": 1487, - "width": 157, - "height": 44, - "rotation": 0, - "spritesheet": 2 - }, - "ship_04_001": { - "x": 550, - "y": 210, - "width": 179, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "ship_04_2_001": { - "x": 1829, - "y": 661, - "width": 143, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "ship_05_001": { - "x": 1666, - "y": 754, - "width": 162, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_05_2_001": { - "x": 1531, - "y": 425, - "width": 135, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "ship_06_001": { - "x": 1358, - "y": 411, - "width": 172, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "ship_06_2_001": { - "x": 2887, - "y": 965, - "width": 164, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_07_001": { - "x": 2165, - "y": 833, - "width": 166, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_07_2_001": { - "x": 524, - "y": 2219, - "width": 115, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_08_001": { - "x": 2165, - "y": 742, - "width": 166, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "ship_08_2_001": { - "x": 3557, - "y": 1412, - "width": 158, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "ship_09_001": { - "x": 1022, - "y": 212, - "width": 174, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "ship_09_2_001": { - "x": 2165, - "y": 667, - "width": 168, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "ship_10_001": { - "x": 2465, - "y": 963, - "width": 160, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "ship_10_2_001": { - "x": 1, - "y": 628, - "width": 146, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_11_001": { - "x": 1022, - "y": 307, - "width": 174, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_11_2_001": { - "x": 3555, - "y": 2647, - "width": 121, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_12_001": { - "x": 3557, - "y": 1236, - "width": 162, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "ship_12_2_001": { - "x": 1974, - "y": 564, - "width": 137, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "ship_13_001": { - "x": 3249, - "y": 1278, - "width": 158, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_13_2_001": { - "x": 659, - "y": 392, - "width": 152, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "ship_14_001": { - "x": 3899, - "y": 1387, - "width": 156, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "ship_14_2_001": { - "x": 722, - "y": 422, - "width": 150, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "ship_15_001": { - "x": 1666, - "y": 661, - "width": 162, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_15_2_001": { - "x": 655, - "y": 545, - "width": 148, - "height": 66, - "rotation": 90, - "spritesheet": 2 - }, - "ship_16_001": { - "x": 730, - "y": 226, - "width": 176, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "ship_16_2_001": { - "x": 2466, - "y": 619, - "width": 168, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "ship_17_001": { - "x": 361, - "y": 315, - "width": 175, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "ship_17_2_001": { - "x": 3898, - "y": 1541, - "width": 155, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "ship_18_001": { - "x": 3917, - "y": 290, - "width": 178, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "ship_18_2_001": { - "x": 1829, - "y": 728, - "width": 143, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_19_001": { - "x": 3899, - "y": 1094, - "width": 184, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_19_2_001": { - "x": 176, - "y": 478, - "width": 148, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "ship_20_001": { - "x": 722, - "y": 317, - "width": 172, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "ship_20_2_001": { - "x": 1908, - "y": 1322, - "width": 134, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "ship_21_001": { - "x": 3899, - "y": 601, - "width": 196, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "ship_21_2_001": { - "x": 3741, - "y": 1647, - "width": 154, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_22_001": { - "x": 1, - "y": 335, - "width": 176, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "ship_22_2_001": { - "x": 3414, - "y": 1102, - "width": 16, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "ship_23_001": { - "x": 3249, - "y": 1171, - "width": 158, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "ship_23_2_001": { - "x": 312, - "y": 1017, - "width": 142, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "ship_24_001": { - "x": 2165, - "y": 914, - "width": 162, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "ship_24_2_001": { - "x": 2112, - "y": 706, - "width": 128, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "ship_25_001": { - "x": 3557, - "y": 1066, - "width": 186, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_25_2_001": { - "x": 2112, - "y": 295, - "width": 140, - "height": 52, - "rotation": 90, - "spritesheet": 2 - }, - "ship_26_001": { - "x": 1022, - "y": 546, - "width": 171, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "ship_26_2_001": { - "x": 1598, - "y": 1560, - "width": 130, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_26_extra_001": { - "x": 3176, - "y": 627, - "width": 165, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "ship_27_001": { - "x": 1803, - "y": 574, - "width": 169, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_27_2_001": { - "x": 2466, - "y": 880, - "width": 165, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "ship_27_extra_001": { - "x": 149, - "y": 625, - "width": 82, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "ship_28_001": { - "x": 2887, - "y": 884, - "width": 165, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_28_2_001": { - "x": 2164, - "y": 1070, - "width": 161, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "ship_28_extra_001": { - "x": 3558, - "y": 108, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 2 - }, - "ship_29_001": { - "x": 733, - "y": 145, - "width": 180, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_29_2_001": { - "x": 353, - "y": 392, - "width": 152, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "ship_29_extra_001": { - "x": 2096, - "y": 1077, - "width": 67, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "ship_30_001": { - "x": 1, - "y": 145, - "width": 182, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_30_2_001": { - "x": 444, - "y": 1545, - "width": 55, - "height": 14, - "rotation": 0, - "spritesheet": 2 - }, - "ship_30_extra_001": { - "x": 3526, - "y": 579, - "width": 31, - "height": 16, - "rotation": 0, - "spritesheet": 2 - }, - "ship_31_001": { - "x": 3450, - "y": 995, - "width": 169, - "height": 106, - "rotation": 90, - "spritesheet": 2 - }, - "ship_31_2_001": { - "x": 2887, - "y": 1188, - "width": 159, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "ship_31_extra_001": { - "x": 3007, - "y": 1662, - "width": 37, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "ship_32_001": { - "x": 3899, - "y": 684, - "width": 195, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "ship_32_2_001": { - "x": 3741, - "y": 1503, - "width": 156, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "ship_32_extra_001": { - "x": 1, - "y": 557, - "width": 147, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "ship_33_001": { - "x": 3899, - "y": 1175, - "width": 183, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "ship_33_2_001": { - "x": 367, - "y": 220, - "width": 177, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "ship_34_001": { - "x": 3784, - "y": 784, - "width": 167, - "height": 114, - "rotation": 90, - "spritesheet": 2 - }, - "ship_34_2_001": { - "x": 506, - "y": 461, - "width": 151, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "ship_35_001": { - "x": 3249, - "y": 833, - "width": 206, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "ship_35_2_001": { - "x": 3249, - "y": 918, - "width": 200, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "ship_35_extra_001": { - "x": 3917, - "y": 176, - "width": 17, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "ship_36_001": { - "x": 1022, - "y": 400, - "width": 172, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "ship_36_2_001": { - "x": 3741, - "y": 1570, - "width": 154, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "ship_36_extra_001": { - "x": 3148, - "y": 2332, - "width": 100, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "ship_37_001": { - "x": 367, - "y": 145, - "width": 182, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "ship_37_2_001": { - "x": 1022, - "y": 495, - "width": 172, - "height": 50, - "rotation": 0, - "spritesheet": 2 - }, - "ship_38_001": { - "x": 3899, - "y": 1274, - "width": 182, - "height": 112, - "rotation": 0, - "spritesheet": 2 - }, - "ship_38_2_001": { - "x": 1358, - "y": 312, - "width": 172, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "ship_38_extra_001": { - "x": 176, - "y": 539, - "width": 148, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "ship_39_001": { - "x": 3557, - "y": 979, - "width": 190, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_39_2_001": { - "x": 550, - "y": 145, - "width": 182, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "ship_40_001": { - "x": 184, - "y": 145, - "width": 182, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_40_2_001": { - "x": 3186, - "y": 466, - "width": 160, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "ship_40_extra_001": { - "x": 1336, - "y": 817, - "width": 76, - "height": 18, - "rotation": 90, - "spritesheet": 2 - }, - "ship_41_001": { - "x": 2466, - "y": 787, - "width": 166, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_41_2_001": { - "x": 3249, - "y": 1367, - "width": 158, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_41_extra_001": { - "x": 3558, - "y": 80, - "width": 10, - "height": 6, - "rotation": 90, - "spritesheet": 2 - }, - "ship_42_001": { - "x": 3557, - "y": 894, - "width": 192, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "ship_42_2_001": { - "x": 545, - "y": 313, - "width": 176, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "ship_43_001": { - "x": 3917, - "y": 197, - "width": 178, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_43_2_001": { - "x": 2465, - "y": 1060, - "width": 160, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_44_001": { - "x": 3249, - "y": 738, - "width": 206, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "ship_44_2_001": { - "x": 3899, - "y": 888, - "width": 192, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "ship_45_001": { - "x": 2165, - "y": 590, - "width": 168, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "ship_45_2_001": { - "x": 2164, - "y": 999, - "width": 162, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "ship_46_001": { - "x": 3557, - "y": 1153, - "width": 184, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "ship_46_2_001": { - "x": 3249, - "y": 1102, - "width": 164, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "ship_47_001": { - "x": 3899, - "y": 773, - "width": 192, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "ship_47_2_001": { - "x": 3249, - "y": 997, - "width": 182, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "ship_47_extra_001": { - "x": 1114, - "y": 2818, - "width": 106, - "height": 54, - "rotation": 0, - "spritesheet": 2 - }, - "ship_48_001": { - "x": 3915, - "y": 363, - "width": 180, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "ship_48_2_001": { - "x": 3456, - "y": 824, - "width": 170, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "ship_48_extra_001": { - "x": 3558, - "y": 25, - "width": 8, - "height": 6, - "rotation": 0, - "spritesheet": 2 - }, - "ship_49_001": { - "x": 1803, - "y": 469, - "width": 170, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "ship_49_2_001": { - "x": 3931, - "y": 1, - "width": 164, - "height": 100, - "rotation": 0, - "spritesheet": 2 - }, - "ship_49_extra_001": { - "x": 3712, - "y": 1516, - "width": 126, - "height": 28, - "rotation": 90, - "spritesheet": 2 - }, - "ship_50_001": { - "x": 3402, - "y": 1611, - "width": 152, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "ship_50_2_001": { - "x": 1330, - "y": 1631, - "width": 132, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "ship_50_extra_001": { - "x": 1533, - "y": 2941, - "width": 50, - "height": 44, - "rotation": 0, - "spritesheet": 2 - }, - "ship_51_001": { - "x": 1, - "y": 232, - "width": 176, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "ship_51_2_001": { - "x": 3931, - "y": 102, - "width": 164, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_01_001": { - "x": 278, - "y": 2717, - "width": 118, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_01_2_001": { - "x": 3007, - "y": 1623, - "width": 37, - "height": 38, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_01_extra_001": { - "x": 122, - "y": 2516, - "width": 35, - "height": 36, - "rotation": 90, - "spritesheet": 2 - }, - "spider_01_01_glow_001": { - "x": 2624, - "y": 1578, - "width": 126, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_02_001": { - "x": 3963, - "y": 3334, - "width": 44, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "spider_01_02_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_02_glow_001": { - "x": 3177, - "y": 3025, - "width": 52, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_01_03_001": { - "x": 2848, - "y": 329, - "width": 38, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_03_glow_001": { - "x": 1145, - "y": 1389, - "width": 47, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_01_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_01_001": { - "x": 2753, - "y": 1120, - "width": 133, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_01_2_001": { - "x": 3373, - "y": 1704, - "width": 123, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_01_extra_001": { - "x": 1084, - "y": 1889, - "width": 35, - "height": 38, - "rotation": 90, - "spritesheet": 2 - }, - "spider_02_01_glow_001": { - "x": 1, - "y": 1318, - "width": 141, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_02_001": { - "x": 4026, - "y": 3375, - "width": 44, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "spider_02_02_2_001": { - "x": 143, - "y": 1296, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_02_glow_001": { - "x": 3177, - "y": 3025, - "width": 52, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_02_03_001": { - "x": 2848, - "y": 404, - "width": 38, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_03_2_001": { - "x": 325, - "y": 543, - "width": 14, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "spider_02_03_glow_001": { - "x": 1145, - "y": 1389, - "width": 47, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_02_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_01_001": { - "x": 914, - "y": 145, - "width": 107, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_01_2_001": { - "x": 1084, - "y": 1993, - "width": 35, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_01_extra_001": { - "x": 2255, - "y": 2627, - "width": 89, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_01_glow_001": { - "x": 524, - "y": 1878, - "width": 115, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_02_001": { - "x": 4026, - "y": 3375, - "width": 44, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "spider_03_02_2_001": { - "x": 143, - "y": 1296, - "width": 20, - "height": 20, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_02_glow_001": { - "x": 3177, - "y": 3025, - "width": 52, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_03_03_001": { - "x": 2848, - "y": 404, - "width": 38, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_03_2_001": { - "x": 325, - "y": 543, - "width": 14, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "spider_03_03_glow_001": { - "x": 1145, - "y": 1389, - "width": 47, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_03_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_01_001": { - "x": 157, - "y": 2659, - "width": 120, - "height": 96, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_01_2_001": { - "x": 3526, - "y": 511, - "width": 31, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_01_extra_001": { - "x": 1668, - "y": 110, - "width": 25, - "height": 28, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_01_glow_001": { - "x": 1868, - "y": 1651, - "width": 128, - "height": 104, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_02_001": { - "x": 3627, - "y": 3133, - "width": 42, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_02_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_02_glow_001": { - "x": 3412, - "y": 3080, - "width": 52, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "spider_04_03_001": { - "x": 3020, - "y": 3010, - "width": 50, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "spider_04_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_03_glow_001": { - "x": 3680, - "y": 1849, - "width": 58, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_04_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_01_001": { - "x": 2751, - "y": 1661, - "width": 125, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_01_2_001": { - "x": 3043, - "y": 1855, - "width": 121, - "height": 104, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_01_extra_001": { - "x": 3495, - "y": 1945, - "width": 61, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_01_glow_001": { - "x": 2753, - "y": 896, - "width": 133, - "height": 116, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_02_001": { - "x": 3850, - "y": 3118, - "width": 52, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_02_2_001": { - "x": 1842, - "y": 2749, - "width": 48, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_02_glow_001": { - "x": 3414, - "y": 2962, - "width": 60, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_03_001": { - "x": 2863, - "y": 2943, - "width": 42, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_03_2_001": { - "x": 122, - "y": 1711, - "width": 38, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_03_glow_001": { - "x": 2786, - "y": 2777, - "width": 50, - "height": 84, - "rotation": 90, - "spritesheet": 2 - }, - "spider_05_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_05_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_01_001": { - "x": 1718, - "y": 1758, - "width": 127, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_01_2_001": { - "x": 3249, - "y": 1726, - "width": 123, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_01_extra_001": { - "x": 3526, - "y": 546, - "width": 31, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_01_glow_001": { - "x": 1667, - "y": 304, - "width": 135, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_02_001": { - "x": 3915, - "y": 3063, - "width": 50, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_02_2_001": { - "x": 1618, - "y": 2821, - "width": 46, - "height": 60, - "rotation": 90, - "spritesheet": 2 - }, - "spider_06_02_glow_001": { - "x": 3678, - "y": 2259, - "width": 58, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_03_001": { - "x": 3264, - "y": 2871, - "width": 50, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "spider_06_03_2_001": { - "x": 3339, - "y": 2962, - "width": 46, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "spider_06_03_glow_001": { - "x": 3679, - "y": 2012, - "width": 58, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_04_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_06_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_01_001": { - "x": 2753, - "y": 1013, - "width": 133, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_01_2_001": { - "x": 1843, - "y": 2613, - "width": 101, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_01_extra_001": { - "x": 646, - "y": 968, - "width": 75, - "height": 88, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_01_glow_001": { - "x": 308, - "y": 1243, - "width": 141, - "height": 114, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_02_001": { - "x": 1478, - "y": 2933, - "width": 40, - "height": 54, - "rotation": 90, - "spritesheet": 2 - }, - "spider_07_02_2_001": { - "x": 1306, - "y": 212, - "width": 34, - "height": 14, - "rotation": 90, - "spritesheet": 2 - }, - "spider_07_02_glow_001": { - "x": 4031, - "y": 3107, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_07_03_001": { - "x": 3912, - "y": 3252, - "width": 50, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_03_2_001": { - "x": 3414, - "y": 1135, - "width": 34, - "height": 26, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_03_glow_001": { - "x": 3678, - "y": 2332, - "width": 58, - "height": 68, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_04_001": { - "x": 3558, - "y": 108, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_04_2_001": { - "x": 3558, - "y": 108, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 2 - }, - "spider_07_04_glow_001": { - "x": 3558, - "y": 108, - "width": 3, - "height": 3, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_01_001": { - "x": 1974, - "y": 469, - "width": 137, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_01_2_001": { - "x": 149, - "y": 557, - "width": 24, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_01_extra_001": { - "x": 146, - "y": 968, - "width": 63, - "height": 22, - "rotation": 90, - "spritesheet": 2 - }, - "spider_08_01_glow_001": { - "x": 321, - "y": 621, - "width": 145, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_02_001": { - "x": 3966, - "y": 3244, - "width": 42, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_08_02_2_001": { - "x": 122, - "y": 1914, - "width": 38, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_02_glow_001": { - "x": 3412, - "y": 3080, - "width": 52, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "spider_08_03_001": { - "x": 2848, - "y": 171, - "width": 39, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_03_2_001": { - "x": 3558, - "y": 98, - "width": 6, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_03_glow_001": { - "x": 3027, - "y": 2814, - "width": 47, - "height": 82, - "rotation": 90, - "spritesheet": 2 - }, - "spider_08_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_08_04_2_001": { - "x": 473, - "y": 617, - "width": 50, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "spider_08_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_01_001": { - "x": 1667, - "y": 423, - "width": 135, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_01_2_001": { - "x": 1244, - "y": 1962, - "width": 85, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_01_extra_001": { - "x": 3002, - "y": 1768, - "width": 63, - "height": 40, - "rotation": 90, - "spritesheet": 2 - }, - "spider_09_01_glow_001": { - "x": 2634, - "y": 764, - "width": 143, - "height": 118, - "rotation": 90, - "spritesheet": 2 - }, - "spider_09_02_001": { - "x": 3627, - "y": 3133, - "width": 42, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_02_2_001": { - "x": 122, - "y": 1914, - "width": 38, - "height": 60, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_02_glow_001": { - "x": 3412, - "y": 3080, - "width": 52, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "spider_09_03_001": { - "x": 2848, - "y": 171, - "width": 39, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_03_2_001": { - "x": 3012, - "y": 1374, - "width": 32, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_03_glow_001": { - "x": 3027, - "y": 2814, - "width": 47, - "height": 82, - "rotation": 90, - "spritesheet": 2 - }, - "spider_09_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_09_04_2_001": { - "x": 473, - "y": 617, - "width": 50, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "spider_09_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_01_001": { - "x": 3148, - "y": 874, - "width": 141, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_01_2_001": { - "x": 565, - "y": 1560, - "width": 113, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_01_extra_001": { - "x": 4082, - "y": 1280, - "width": 47, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_01_glow_001": { - "x": 3407, - "y": 1502, - "width": 149, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_02_001": { - "x": 3097, - "y": 3027, - "width": 48, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_02_2_001": { - "x": 325, - "y": 524, - "width": 18, - "height": 26, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_02_glow_001": { - "x": 2985, - "y": 2404, - "width": 56, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_03_001": { - "x": 2745, - "y": 2911, - "width": 50, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_03_2_001": { - "x": 873, - "y": 463, - "width": 20, - "height": 32, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_03_glow_001": { - "x": 3678, - "y": 2099, - "width": 58, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_04_001": { - "x": 444, - "y": 1510, - "width": 55, - "height": 34, - "rotation": 0, - "spritesheet": 2 - }, - "spider_10_04_2_001": { - "x": 473, - "y": 617, - "width": 50, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "spider_10_04_glow_001": { - "x": 2561, - "y": 1513, - "width": 63, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_01_001": { - "x": 1589, - "y": 1736, - "width": 128, - "height": 102, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_01_2_001": { - "x": 3373, - "y": 1787, - "width": 122, - "height": 94, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_01_extra_001": { - "x": 4082, - "y": 1328, - "width": 38, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "spider_11_01_glow_001": { - "x": 1334, - "y": 1219, - "width": 138, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_02_001": { - "x": 2998, - "y": 1895, - "width": 44, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_02_2_001": { - "x": 122, - "y": 1975, - "width": 38, - "height": 56, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_02_glow_001": { - "x": 1062, - "y": 2657, - "width": 52, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_03_001": { - "x": 1146, - "y": 1312, - "width": 46, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_03_2_001": { - "x": 122, - "y": 1784, - "width": 38, - "height": 64, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_03_glow_001": { - "x": 2786, - "y": 2722, - "width": 54, - "height": 84, - "rotation": 90, - "spritesheet": 2 - }, - "spider_11_04_001": { - "x": 122, - "y": 2734, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_11_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_11_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_01_001": { - "x": 3148, - "y": 1280, - "width": 120, - "height": 100, - "rotation": 90, - "spritesheet": 2 - }, - "spider_12_01_2_001": { - "x": 1554, - "y": 2457, - "width": 110, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_01_glow_001": { - "x": 2013, - "y": 1482, - "width": 130, - "height": 108, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_02_001": { - "x": 2998, - "y": 1962, - "width": 44, - "height": 66, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_02_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_02_glow_001": { - "x": 2387, - "y": 2463, - "width": 52, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_03_001": { - "x": 1073, - "y": 2501, - "width": 42, - "height": 78, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_03_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_03_glow_001": { - "x": 1641, - "y": 2770, - "width": 50, - "height": 86, - "rotation": 90, - "spritesheet": 2 - }, - "spider_12_04_001": { - "x": 1084, - "y": 2277, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_12_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_12_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_01_001": { - "x": 1197, - "y": 388, - "width": 160, - "height": 110, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_01_2_001": { - "x": 827, - "y": 2833, - "width": 104, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_01_extra_001": { - "x": 455, - "y": 1033, - "width": 88, - "height": 46, - "rotation": 90, - "spritesheet": 2 - }, - "spider_13_01_glow_001": { - "x": 1357, - "y": 677, - "width": 168, - "height": 118, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_02_001": { - "x": 2036, - "y": 2718, - "width": 44, - "height": 62, - "rotation": 90, - "spritesheet": 2 - }, - "spider_13_02_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_02_glow_001": { - "x": 3177, - "y": 3025, - "width": 52, - "height": 70, - "rotation": 90, - "spritesheet": 2 - }, - "spider_13_03_001": { - "x": 4056, - "y": 1406, - "width": 38, - "height": 74, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_03_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_03_glow_001": { - "x": 2288, - "y": 2380, - "width": 48, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_04_001": { - "x": 122, - "y": 2734, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_13_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_13_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_01_001": { - "x": 3414, - "y": 1165, - "width": 144, - "height": 142, - "rotation": 90, - "spritesheet": 2 - }, - "spider_14_01_2_001": { - "x": 2326, - "y": 1084, - "width": 138, - "height": 130, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_01_glow_001": { - "x": 3744, - "y": 1077, - "width": 154, - "height": 150, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_02_001": { - "x": 3966, - "y": 3156, - "width": 44, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_14_02_2_001": { - "x": 3678, - "y": 2611, - "width": 38, - "height": 58, - "rotation": 90, - "spritesheet": 2 - }, - "spider_14_02_glow_001": { - "x": 3343, - "y": 2909, - "width": 52, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "spider_14_03_001": { - "x": 4054, - "y": 1610, - "width": 40, - "height": 84, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_03_2_001": { - "x": 1084, - "y": 2028, - "width": 34, - "height": 72, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_03_glow_001": { - "x": 2994, - "y": 2029, - "width": 48, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_04_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_14_04_glow_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_01_001": { - "x": 401, - "y": 2649, - "width": 118, - "height": 82, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_01_2_001": { - "x": 2543, - "y": 2504, - "width": 92, - "height": 76, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_01_extra_001": { - "x": 114, - "y": 3007, - "width": 52, - "height": 32, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_01_glow_001": { - "x": 2753, - "y": 1570, - "width": 126, - "height": 90, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_02_001": { - "x": 4031, - "y": 3285, - "width": 42, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_02_2_001": { - "x": 2179, - "y": 2221, - "width": 32, - "height": 40, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_02_glow_001": { - "x": 3554, - "y": 3111, - "width": 50, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_03_001": { - "x": 3264, - "y": 2973, - "width": 42, - "height": 74, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_03_2_001": { - "x": 2179, - "y": 2176, - "width": 32, - "height": 44, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_03_glow_001": { - "x": 2579, - "y": 2846, - "width": 50, - "height": 82, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_04_001": { - "x": 1084, - "y": 2277, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_15_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_15_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_16_01_001": { - "x": 2273, - "y": 1602, - "width": 98, - "height": 128, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_01_2_001": { - "x": 3731, - "y": 3154, - "width": 64, - "height": 48, - "rotation": 0, - "spritesheet": 2 - }, - "spider_16_01_extra_001": { - "x": 4082, - "y": 1367, - "width": 38, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_01_glow_001": { - "x": 1473, - "y": 1319, - "width": 108, - "height": 136, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_02_001": { - "x": 3485, - "y": 3061, - "width": 46, - "height": 68, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_02_2_001": { - "x": 3861, - "y": 1781, - "width": 38, - "height": 30, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_02_glow_001": { - "x": 3100, - "y": 2972, - "width": 54, - "height": 76, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_03_001": { - "x": 1146, - "y": 1231, - "width": 46, - "height": 80, - "rotation": 0, - "spritesheet": 2 - }, - "spider_16_03_2_001": { - "x": 1084, - "y": 1852, - "width": 38, - "height": 36, - "rotation": 0, - "spritesheet": 2 - }, - "spider_16_03_glow_001": { - "x": 2146, - "y": 2663, - "width": 54, - "height": 88, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_04_001": { - "x": 1082, - "y": 2334, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_16_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_16_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_01_001": { - "x": 1193, - "y": 1217, - "width": 140, - "height": 98, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_01_2_001": { - "x": 1610, - "y": 1343, - "width": 134, - "height": 92, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_01_extra_001": { - "x": 4083, - "y": 1175, - "width": 54, - "height": 12, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_01_glow_001": { - "x": 3408, - "y": 1310, - "width": 148, - "height": 106, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_02_001": { - "x": 3731, - "y": 3203, - "width": 48, - "height": 64, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_02_2_001": { - "x": 3678, - "y": 2568, - "width": 42, - "height": 58, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_02_glow_001": { - "x": 3554, - "y": 3054, - "width": 56, - "height": 72, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_03_001": { - "x": 3106, - "y": 2923, - "width": 48, - "height": 78, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_03_2_001": { - "x": 3628, - "y": 2991, - "width": 42, - "height": 70, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_03_glow_001": { - "x": 3676, - "y": 2782, - "width": 56, - "height": 86, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_04_001": { - "x": 1084, - "y": 2277, - "width": 56, - "height": 34, - "rotation": 90, - "spritesheet": 2 - }, - "spider_17_04_2_001": { - "x": 3563, - "y": 103, - "width": 4, - "height": 4, - "rotation": 0, - "spritesheet": 2 - }, - "spider_17_04_glow_001": { - "x": 4031, - "y": 3242, - "width": 64, - "height": 42, - "rotation": 0, - "spritesheet": 2 - }, - "GJLargeLock_001": { - "x": 1008, - "y": 3007, - "width": 236, - "height": 284, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_BPMOffBtn_001": { - "x": 2619, - "y": 296, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_BPMOnBtn_001": { - "x": 2262, - "y": 1635, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_achBtn_001": { - "x": 1669, - "y": 2538, - "width": 198, - "height": 204, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_arrow_01_001": { - "x": 2733, - "y": 2257, - "width": 126, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_arrow_02_001": { - "x": 2743, - "y": 2410, - "width": 126, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_arrow_03_001": { - "x": 2808, - "y": 1612, - "width": 126, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_audioOffBtn_001": { - "x": 2741, - "y": 1765, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_audioOnBtn_001": { - "x": 2741, - "y": 1918, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_autoOffBtn_001": { - "x": 2789, - "y": 2071, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_autoOnBtn_001": { - "x": 2935, - "y": 1605, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_backBtn_001": { - "x": 1683, - "y": 1422, - "width": 196, - "height": 198, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_bigDiamond_001": { - "x": 1637, - "y": 2743, - "width": 200, - "height": 178, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_bigDiamond_glow_001": { - "x": 1436, - "y": 2323, - "width": 224, - "height": 208, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_bigDiamond_noShadow_001": { - "x": 2612, - "y": 3248, - "width": 174, - "height": 158, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_bigKey_001": { - "x": 2240, - "y": 1006, - "width": 170, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_bigKey_glow_001": { - "x": 1243, - "y": 2728, - "width": 248, - "height": 178, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_bigStar_001": { - "x": 3896, - "y": 1, - "width": 182, - "height": 186, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_bigStar_glow_001": { - "x": 1177, - "y": 1163, - "width": 264, - "height": 268, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_bigStar_noShadow_001": { - "x": 3322, - "y": 660, - "width": 162, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_cancelDownloadBtn_001": { - "x": 3193, - "y": 1606, - "width": 150, - "height": 152, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_changeSongBtn_001": { - "x": 2935, - "y": 1758, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_chatBtn_001": { - "x": 1894, - "y": 937, - "width": 182, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_chatBtn_01_001": { - "x": 2661, - "y": 2813, - "width": 71, - "height": 64, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_chatBtn_02_001": { - "x": 2411, - "y": 1006, - "width": 62, - "height": 64, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_checkOff_001": { - "x": 2407, - "y": 1487, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_checkOn_001": { - "x": 2736, - "y": 3107, - "width": 140, - "height": 138, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_checkpointBtn_001": { - "x": 1955, - "y": 475, - "width": 292, - "height": 192, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_chrSel_001": { - "x": 1, - "y": 3175, - "width": 334, - "height": 156, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_closeBtn_001": { - "x": 1992, - "y": 1323, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_coinsIcon2_001": { - "x": 3102, - "y": 3292, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_coinsIcon_001": { - "x": 3341, - "y": 3394, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_coinsIcon_gray_001": { - "x": 3694, - "y": 3280, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_colorBtn_001": { - "x": 2734, - "y": 2966, - "width": 138, - "height": 140, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_commentSide2_001": { - "x": 1824, - "y": 1997, - "width": 29, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_commentSide_001": { - "x": 3792, - "y": 382, - "width": 29, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_commentTop2_001": { - "x": 1, - "y": 668, - "width": 1417, - "height": 88, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_commentTop_001": { - "x": 1, - "y": 757, - "width": 1417, - "height": 88, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_completesIcon_001": { - "x": 2055, - "y": 3427, - "width": 98, - "height": 94, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_copyBtn2_001": { - "x": 2883, - "y": 3385, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_copyBtn_001": { - "x": 2175, - "y": 1317, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_copyStateBtn_001": { - "x": 3612, - "y": 1619, - "width": 129, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_createLinesBtn_001": { - "x": 2009, - "y": 236, - "width": 238, - "height": 240, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_creatorBtn_001": { - "x": 388, - "y": 2887, - "width": 266, - "height": 266, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_dailyRewardBtn_001": { - "x": 1228, - "y": 846, - "width": 190, - "height": 168, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deSelBtn2_001": { - "x": 3346, - "y": 1609, - "width": 130, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_deSelBtn_001": { - "x": 2358, - "y": 1302, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deleteAllIcon_001": { - "x": 1868, - "y": 2693, - "width": 106, - "height": 46, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deleteBtn_001": { - "x": 2079, - "y": 1581, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deleteIcon_001": { - "x": 3983, - "y": 2911, - "width": 96, - "height": 96, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deleteServerBtn_001": { - "x": 2632, - "y": 809, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_deleteSongBtn_001": { - "x": 2892, - "y": 1911, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_demonIcon_001": { - "x": 3086, - "y": 1707, - "width": 106, - "height": 100, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_diamondsIcon_001": { - "x": 3346, - "y": 1740, - "width": 86, - "height": 76, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_dislikeBtn_001": { - "x": 2474, - "y": 1000, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_dislikesIcon_001": { - "x": 3985, - "y": 804, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_downloadBtn_001": { - "x": 2940, - "y": 2064, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_downloadsIcon_001": { - "x": 3985, - "y": 899, - "width": 94, - "height": 94, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_duplicateBtn_001": { - "x": 2657, - "y": 994, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_duplicateLockedBtn_001": { - "x": 2541, - "y": 1302, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_duplicateObjectBtn2_001": { - "x": 3607, - "y": 1749, - "width": 129, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_duplicateObjectBtn_001": { - "x": 2724, - "y": 1302, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_editBtn_001": { - "x": 655, - "y": 2428, - "width": 306, - "height": 312, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_editHSVBtn2_001": { - "x": 3479, - "y": 1609, - "width": 130, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_editObjBtn3_001": { - "x": 3496, - "y": 1912, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_editObjBtn4_001": { - "x": 3627, - "y": 1879, - "width": 129, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_epicCoin_001": { - "x": 1691, - "y": 1619, - "width": 190, - "height": 194, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_everyplayBtn_001": { - "x": 3362, - "y": 422, - "width": 196, - "height": 204, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_extendedIcon_001": { - "x": 3985, - "y": 994, - "width": 94, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_featuredCoin_001": { - "x": 2985, - "y": 605, - "width": 164, - "height": 167, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_featuredIcon_001": { - "x": 2611, - "y": 449, - "width": 94, - "height": 80, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_followTxt_001": { - "x": 2770, - "y": 415, - "width": 204, - "height": 64, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_freeLevelsBtn_001": { - "x": 1177, - "y": 1432, - "width": 264, - "height": 248, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_freeStuffBtn_001": { - "x": 2098, - "y": 1120, - "width": 196, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_fullBtn_001": { - "x": 655, - "y": 2741, - "width": 318, - "height": 266, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_fxOffBtn_001": { - "x": 3043, - "y": 1911, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_fxOnBtn_001": { - "x": 3091, - "y": 2064, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_garageBtn_001": { - "x": 974, - "y": 2740, - "width": 268, - "height": 266, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_getSongInfoBtn_001": { - "x": 3193, - "y": 1757, - "width": 150, - "height": 152, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_gkBtn_001": { - "x": 1870, - "y": 3127, - "width": 196, - "height": 203, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_goToLayerBtn_001": { - "x": 3544, - "y": 2045, - "width": 129, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_gpBtn_001": { - "x": 3567, - "y": 432, - "width": 196, - "height": 204, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_gpgBtn_001": { - "x": 1870, - "y": 2922, - "width": 197, - "height": 204, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_groupIDBtn2_001": { - "x": 3674, - "y": 2012, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_groupIDBtn_001": { - "x": 1882, - "y": 1786, - "width": 182, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_hammerIcon_001": { - "x": 3983, - "y": 3105, - "width": 94, - "height": 85, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_helpBtn2_001": { - "x": 1881, - "y": 1969, - "width": 182, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_helpBtn_001": { - "x": 3194, - "y": 1908, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_hsv2Btn_001": { - "x": 3674, - "y": 2145, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_hsvBtn_001": { - "x": 3674, - "y": 2278, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_infoBtn_001": { - "x": 1858, - "y": 2323, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_infoIcon_001": { - "x": 2617, - "y": 2719, - "width": 93, - "height": 92, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_levelComplete_001": { - "x": 1, - "y": 350, - "width": 1502, - "height": 172, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_levelLeaderboardBtn_001": { - "x": 1868, - "y": 2508, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_like2Btn2_001": { - "x": 2041, - "y": 2323, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_like2Btn_001": { - "x": 2051, - "y": 2508, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_likeBtn2_001": { - "x": 1983, - "y": 2693, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_likeBtn_001": { - "x": 2066, - "y": 1969, - "width": 182, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_likesIcon_001": { - "x": 3985, - "y": 707, - "width": 96, - "height": 94, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_lockGray_001": { - "x": 2150, - "y": 3427, - "width": 88, - "height": 106, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_lock_001": { - "x": 3935, - "y": 507, - "width": 88, - "height": 106, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_lock_open_001": { - "x": 150, - "y": 3062, - "width": 85, - "height": 118, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_longBtn01_001": { - "x": 1419, - "y": 879, - "width": 367, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_longBtn02_001": { - "x": 1419, - "y": 1002, - "width": 367, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_longBtn03_001": { - "x": 1578, - "y": 113, - "width": 674, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_longBtn04_001": { - "x": 1558, - "y": 236, - "width": 450, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_longBtn05_001": { - "x": 2712, - "y": 1179, - "width": 174, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_lvlEditWorld_001": { - "x": 1442, - "y": 1619, - "width": 248, - "height": 144, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_lvlEdit_001": { - "x": 1436, - "y": 2548, - "width": 232, - "height": 154, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_menuBtn_001": { - "x": 1442, - "y": 1125, - "width": 240, - "height": 246, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_moreGamesBtn_001": { - "x": 388, - "y": 2560, - "width": 326, - "height": 266, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_musicOffBtn_001": { - "x": 3242, - "y": 2061, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_musicOnBtn_001": { - "x": 3345, - "y": 1908, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_myLevelsTxt_001": { - "x": 1917, - "y": 668, - "width": 288, - "height": 64, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_myServerBtn_001": { - "x": 2067, - "y": 1786, - "width": 182, - "height": 184, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_nameTxt_001": { - "x": 655, - "y": 3008, - "width": 352, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_newBest_001": { - "x": 1, - "y": 991, - "width": 1143, - "height": 191, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_newBtn_001": { - "x": 1645, - "y": 2323, - "width": 212, - "height": 214, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_ngBtn_001": { - "x": 1422, - "y": 2703, - "width": 214, - "height": 220, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_normalBtn_001": { - "x": 1442, - "y": 1372, - "width": 240, - "height": 246, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_noteIcon_001": { - "x": 3880, - "y": 3281, - "width": 85, - "height": 92, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_optionsBtn02_001": { - "x": 3393, - "y": 2061, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_optionsBtn_001": { - "x": 1882, - "y": 1582, - "width": 196, - "height": 203, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_optionsTxt_001": { - "x": 586, - "y": 3444, - "width": 244, - "height": 80, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_orderUpBtn_001": { - "x": 2240, - "y": 809, - "width": 196, - "height": 198, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_pasteBtn2_001": { - "x": 3625, - "y": 2411, - "width": 130, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_pasteBtn_001": { - "x": 2224, - "y": 2323, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_pasteColorBtn_001": { - "x": 3758, - "y": 2411, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_pasteStateBtn_001": { - "x": 3757, - "y": 1879, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_pauseBtn_001": { - "x": 2860, - "y": 2224, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_pauseBtn_clean_001": { - "x": 3983, - "y": 3008, - "width": 96, - "height": 96, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_pauseEditorBtn_001": { - "x": 3011, - "y": 2217, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_playBtn2_001": { - "x": 639, - "y": 2115, - "width": 308, - "height": 312, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_playBtn_001": { - "x": 672, - "y": 1696, - "width": 418, - "height": 418, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_playEditorBtn_001": { - "x": 2870, - "y": 2377, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_playMusicBtn_001": { - "x": 3021, - "y": 2370, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_plus2Btn_001": { - "x": 2536, - "y": 2605, - "width": 86, - "height": 88, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_plus3Btn_001": { - "x": 3346, - "y": 1827, - "width": 78, - "height": 80, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_plusBtn_001": { - "x": 2234, - "y": 2508, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_practiceBtn_001": { - "x": 1245, - "y": 2977, - "width": 240, - "height": 246, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_practiceComplete_001": { - "x": 1, - "y": 523, - "width": 1498, - "height": 144, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_practiceTxt_001": { - "x": 2529, - "y": 530, - "width": 278, - "height": 152, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_profileButton_001": { - "x": 1555, - "y": 3221, - "width": 214, - "height": 220, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_rateDiffBtn2_001": { - "x": 2166, - "y": 2693, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_rateDiffBtnMod_001": { - "x": 2068, - "y": 2878, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_rateDiffBtn_001": { - "x": 2074, - "y": 3063, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_redoBtn_001": { - "x": 3162, - "y": 2217, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_removeCheckBtn_001": { - "x": 3893, - "y": 188, - "width": 186, - "height": 192, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_replayBtn_001": { - "x": 1314, - "y": 3224, - "width": 240, - "height": 246, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_reportBtn_001": { - "x": 2251, - "y": 2878, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_resetBtn_001": { - "x": 3086, - "y": 1808, - "width": 102, - "height": 104, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_rewardBtn_001": { - "x": 1401, - "y": 2102, - "width": 218, - "height": 220, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_rotationControlBtn01_001": { - "x": 2474, - "y": 1185, - "width": 116, - "height": 118, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_rotationControlBtn02_001": { - "x": 2593, - "y": 1185, - "width": 116, - "height": 118, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_sDownloadIcon_001": { - "x": 1245, - "y": 3224, - "width": 60, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_sFollowedIcon_001": { - "x": 3377, - "y": 2844, - "width": 62, - "height": 58, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_sFriendsIcon_001": { - "x": 2706, - "y": 449, - "width": 70, - "height": 58, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_sLikeIcon_001": { - "x": 3377, - "y": 2781, - "width": 62, - "height": 62, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_sMagicIcon_001": { - "x": 4019, - "y": 1904, - "width": 66, - "height": 60, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_sRecentIcon_001": { - "x": 4018, - "y": 1253, - "width": 62, - "height": 58, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_sStarsIcon_001": { - "x": 4018, - "y": 1316, - "width": 60, - "height": 58, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_sTrendingIcon_001": { - "x": 3970, - "y": 1198, - "width": 66, - "height": 48, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_savedSongsBtn_001": { - "x": 1425, - "y": 1764, - "width": 238, - "height": 240, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_secretLock_001": { - "x": 388, - "y": 2205, - "width": 250, - "height": 354, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_selectSongBtn_001": { - "x": 3313, - "y": 2214, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_selectSongOnBtn_001": { - "x": 3172, - "y": 2370, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_select_001": { - "x": 2623, - "y": 1487, - "width": 148, - "height": 148, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_shardsBtn_001": { - "x": 3172, - "y": 2523, - "width": 140, - "height": 142, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_shareBtn_001": { - "x": 158, - "y": 3154, - "width": 306, - "height": 312, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_sideArt_001": { - "x": 586, - "y": 3161, - "width": 286, - "height": 282, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_smallModeIcon_001": { - "x": 3007, - "y": 3292, - "width": 94, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_starBtn2_001": { - "x": 2257, - "y": 3063, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_starBtnMod_001": { - "x": 2349, - "y": 2693, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_starBtn_001": { - "x": 2434, - "y": 2878, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_starsIcon_001": { - "x": 3599, - "y": 3280, - "width": 94, - "height": 89, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_starsIcon_gray_001": { - "x": 3929, - "y": 3191, - "width": 94, - "height": 89, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_statsBtn_001": { - "x": 1894, - "y": 733, - "width": 196, - "height": 203, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_stopEditorBtn_001": { - "x": 3323, - "y": 2367, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_stopMusicBtn_001": { - "x": 3464, - "y": 2214, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_stuffTxt_001": { - "x": 1314, - "y": 2120, - "width": 269, - "height": 86, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_tabOff_001": { - "x": 2737, - "y": 1636, - "width": 128, - "height": 70, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_tabOn_001": { - "x": 2875, - "y": 3175, - "width": 128, - "height": 70, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_table_bottom_001": { - "x": 1, - "y": 179, - "width": 1556, - "height": 170, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_table_side_001": { - "x": 1869, - "y": 1120, - "width": 91, - "height": 256, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_table_top02_001": { - "x": 1578, - "y": 1, - "width": 1576, - "height": 111, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_table_top_001": { - "x": 1, - "y": 1, - "width": 1576, - "height": 177, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_timeIcon_001": { - "x": 3787, - "y": 3272, - "width": 92, - "height": 92, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_topBar_001": { - "x": 1, - "y": 846, - "width": 1226, - "height": 144, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_trailerBtn_001": { - "x": 2770, - "y": 210, - "width": 210, - "height": 204, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_trashBtn_001": { - "x": 3028, - "y": 1442, - "width": 162, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_twitchTxt_001": { - "x": 1782, - "y": 1125, - "width": 293, - "height": 86, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_twitterTxt_001": { - "x": 1349, - "y": 2390, - "width": 304, - "height": 86, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_undoBtn_001": { - "x": 3474, - "y": 2367, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_unlockTxt_001": { - "x": 1091, - "y": 1696, - "width": 423, - "height": 72, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_updateBtn_001": { - "x": 2440, - "y": 3063, - "width": 182, - "height": 184, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_viewProfileTxt_001": { - "x": 1274, - "y": 2395, - "width": 332, - "height": 74, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_yourProfileTxt_001": { - "x": 1961, - "y": 1120, - "width": 202, - "height": 136, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_youtubeTxt_001": { - "x": 1783, - "y": 2922, - "width": 295, - "height": 86, - "rotation": 90, - "spritesheet": 3 - }, - "GJ_zoomInBtn_001": { - "x": 2870, - "y": 2530, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "GJ_zoomOutBtn_001": { - "x": 3021, - "y": 2523, - "width": 150, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "accountBtn_blocked_001": { - "x": 2815, - "y": 647, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_friends_001": { - "x": 2815, - "y": 816, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_messages_001": { - "x": 2980, - "y": 770, - "width": 168, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "accountBtn_messagessent_001": { - "x": 2985, - "y": 935, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_myLevels_001": { - "x": 3153, - "y": 660, - "width": 168, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "accountBtn_pendingRequest_001": { - "x": 3026, - "y": 1104, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_pending_001": { - "x": 3028, - "y": 1273, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_removeFriend_001": { - "x": 3150, - "y": 934, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_requests_001": { - "x": 3191, - "y": 1103, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "accountBtn_settings_001": { - "x": 3193, - "y": 1272, - "width": 168, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "achievementGlow_001": { - "x": 1181, - "y": 2395, - "width": 324, - "height": 92, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_01_001": { - "x": 3689, - "y": 1456, - "width": 163, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_02_001": { - "x": 2252, - "y": 1788, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_03_001": { - "x": 2413, - "y": 1612, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_04_001": { - "x": 2415, - "y": 1776, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_05_001": { - "x": 2578, - "y": 1765, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_06_001": { - "x": 1891, - "y": 3324, - "width": 163, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_07_001": { - "x": 3772, - "y": 432, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_08_001": { - "x": 3822, - "y": 924, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_09_001": { - "x": 3816, - "y": 596, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_10_001": { - "x": 3855, - "y": 1414, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_11_001": { - "x": 3822, - "y": 760, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_12_001": { - "x": 2252, - "y": 1952, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_13_001": { - "x": 2407, - "y": 2279, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_14_001": { - "x": 3356, - "y": 1103, - "width": 166, - "height": 164, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_15_001": { - "x": 3358, - "y": 1270, - "width": 165, - "height": 165, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_16_001": { - "x": 3485, - "y": 629, - "width": 165, - "height": 165, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_17_001": { - "x": 3640, - "y": 961, - "width": 165, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_18_001": { - "x": 3490, - "y": 795, - "width": 165, - "height": 165, - "rotation": 0, - "spritesheet": 3 - }, - "bgIcon_19_001": { - "x": 2815, - "y": 480, - "width": 166, - "height": 165, - "rotation": 90, - "spritesheet": 3 - }, - "bgIcon_20_001": { - "x": 3656, - "y": 795, - "width": 165, - "height": 165, - "rotation": 0, - "spritesheet": 3 - }, - "bonusShardLabel_001": { - "x": 2253, - "y": 174, - "width": 508, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "bonusShardSmall_001": { - "x": 1826, - "y": 806, - "width": 66, - "height": 70, - "rotation": 0, - "spritesheet": 3 - }, - "btn_chatHistory_001": { - "x": 3521, - "y": 1088, - "width": 118, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "cocos2DxLogo": { - "x": 2792, - "y": 113, - "width": 360, - "height": 96, - "rotation": 0, - "spritesheet": 3 - }, - "collaborationIcon_001": { - "x": 4018, - "y": 1377, - "width": 46, - "height": 46, - "rotation": 0, - "spritesheet": 3 - }, - "communityCreditsBtn_001": { - "x": 3524, - "y": 1456, - "width": 164, - "height": 152, - "rotation": 0, - "spritesheet": 3 - }, - "communityIcon_01_001": { - "x": 1882, - "y": 1377, - "width": 204, - "height": 109, - "rotation": 90, - "spritesheet": 3 - }, - "communityIcon_02_001": { - "x": 2887, - "y": 1156, - "width": 138, - "height": 144, - "rotation": 0, - "spritesheet": 3 - }, - "communityIcon_03_001": { - "x": 1579, - "y": 3442, - "width": 200, - "height": 78, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_A_001": { - "x": 3745, - "y": 1619, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_B_001": { - "x": 3723, - "y": 3167, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_Back_001": { - "x": 2417, - "y": 2605, - "width": 118, - "height": 84, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_DPad_Down_001": { - "x": 3258, - "y": 2793, - "width": 118, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_DPad_Left_001": { - "x": 3136, - "y": 2914, - "width": 118, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "controllerBtn_DPad_Right_001": { - "x": 3257, - "y": 2914, - "width": 118, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "controllerBtn_DPad_Up_001": { - "x": 3499, - "y": 2921, - "width": 118, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "controllerBtn_LThumb_001": { - "x": 3826, - "y": 3167, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_RThumb_001": { - "x": 3437, - "y": 3276, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_Start_001": { - "x": 2532, - "y": 2694, - "width": 118, - "height": 84, - "rotation": 90, - "spritesheet": 3 - }, - "controllerBtn_X_001": { - "x": 3135, - "y": 3394, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "controllerBtn_Y_001": { - "x": 3238, - "y": 3394, - "width": 102, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "creators_tab_off_001": { - "x": 3153, - "y": 148, - "width": 369, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "creators_tab_on_001": { - "x": 150, - "y": 2324, - "width": 368, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "currencyOrbIcon_001": { - "x": 3526, - "y": 1837, - "width": 80, - "height": 74, - "rotation": 0, - "spritesheet": 3 - }, - "currencyOrb_001": { - "x": 3597, - "y": 3370, - "width": 78, - "height": 78, - "rotation": 0, - "spritesheet": 3 - }, - "dailyLevelCorner_001": { - "x": 2439, - "y": 809, - "width": 192, - "height": 190, - "rotation": 0, - "spritesheet": 3 - }, - "dailyLevelLabel_001": { - "x": 525, - "y": 1183, - "width": 911, - "height": 146, - "rotation": 90, - "spritesheet": 3 - }, - "deleteFilter_custom_001": { - "x": 1780, - "y": 3427, - "width": 110, - "height": 98, - "rotation": 0, - "spritesheet": 3 - }, - "deleteFilter_details_001": { - "x": 1770, - "y": 3219, - "width": 104, - "height": 97, - "rotation": 90, - "spritesheet": 3 - }, - "deleteFilter_none_001": { - "x": 3425, - "y": 1825, - "width": 82, - "height": 100, - "rotation": 90, - "spritesheet": 3 - }, - "deleteFilter_static_001": { - "x": 3086, - "y": 1605, - "width": 106, - "height": 101, - "rotation": 0, - "spritesheet": 3 - }, - "developedBy_001": { - "x": 1314, - "y": 3471, - "width": 264, - "height": 54, - "rotation": 0, - "spritesheet": 3 - }, - "diamond_small01_001": { - "x": 1955, - "y": 359, - "width": 53, - "height": 50, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_01_btn_001": { - "x": 3378, - "y": 2907, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_02_btn_001": { - "x": 3620, - "y": 2921, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_03_btn_001": { - "x": 3741, - "y": 2925, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_04_btn_001": { - "x": 3862, - "y": 2925, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_05_btn_001": { - "x": 3378, - "y": 3028, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "diffIcon_06_btn_001": { - "x": 2772, - "y": 1487, - "width": 134, - "height": 124, - "rotation": 0, - "spritesheet": 3 - }, - "difficultySelected_001": { - "x": 3873, - "y": 1740, - "width": 132, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_00_btn_001": { - "x": 2981, - "y": 363, - "width": 120, - "height": 171, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_01_btn_001": { - "x": 2981, - "y": 484, - "width": 120, - "height": 171, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_02_btn_001": { - "x": 1225, - "y": 1948, - "width": 172, - "height": 171, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_03_btn_001": { - "x": 3315, - "y": 934, - "width": 120, - "height": 168, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_04_btn_001": { - "x": 1986, - "y": 2152, - "width": 170, - "height": 168, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_05_btn_001": { - "x": 2981, - "y": 210, - "width": 152, - "height": 171, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_06_btn2_001": { - "x": 3153, - "y": 269, - "width": 144, - "height": 214, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_06_btn_001": { - "x": 1838, - "y": 2743, - "width": 144, - "height": 178, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_07_btn2_001": { - "x": 3153, - "y": 414, - "width": 142, - "height": 208, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_07_btn_001": { - "x": 2155, - "y": 2152, - "width": 144, - "height": 170, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_08_btn2_001": { - "x": 3583, - "y": 269, - "width": 162, - "height": 208, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_08_btn_001": { - "x": 2840, - "y": 985, - "width": 144, - "height": 170, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_09_btn2_001": { - "x": 3368, - "y": 269, - "width": 152, - "height": 214, - "rotation": 90, - "spritesheet": 3 - }, - "difficulty_09_btn_001": { - "x": 2091, - "y": 733, - "width": 148, - "height": 178, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_10_btn2_001": { - "x": 1620, - "y": 2102, - "width": 194, - "height": 220, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_10_btn_001": { - "x": 2079, - "y": 937, - "width": 160, - "height": 182, - "rotation": 0, - "spritesheet": 3 - }, - "difficulty_auto_btn_001": { - "x": 2907, - "y": 1301, - "width": 120, - "height": 171, - "rotation": 0, - "spritesheet": 3 - }, - "edit_addCBtn_001": { - "x": 3606, - "y": 3163, - "width": 116, - "height": 116, - "rotation": 0, - "spritesheet": 3 - }, - "edit_buildBtn_001": { - "x": 948, - "y": 2115, - "width": 296, - "height": 98, - "rotation": 90, - "spritesheet": 3 - }, - "edit_buildSBtn_001": { - "x": 1683, - "y": 1125, - "width": 296, - "height": 98, - "rotation": 90, - "spritesheet": 3 - }, - "edit_ccwBtn_001": { - "x": 3149, - "y": 825, - "width": 108, - "height": 118, - "rotation": 90, - "spritesheet": 3 - }, - "edit_cwBtn_001": { - "x": 3371, - "y": 825, - "width": 106, - "height": 118, - "rotation": 90, - "spritesheet": 3 - }, - "edit_delBtnSmall_001": { - "x": 1422, - "y": 2924, - "width": 52, - "height": 52, - "rotation": 0, - "spritesheet": 3 - }, - "edit_delBtn_001": { - "x": 1820, - "y": 705, - "width": 72, - "height": 100, - "rotation": 0, - "spritesheet": 3 - }, - "edit_delCBtn_001": { - "x": 2892, - "y": 1765, - "width": 116, - "height": 42, - "rotation": 90, - "spritesheet": 3 - }, - "edit_deleteBtn_001": { - "x": 1398, - "y": 2003, - "width": 296, - "height": 98, - "rotation": 0, - "spritesheet": 3 - }, - "edit_deleteSBtn_001": { - "x": 1486, - "y": 2924, - "width": 296, - "height": 98, - "rotation": 90, - "spritesheet": 3 - }, - "edit_deselectBtn_001": { - "x": 2532, - "y": 2813, - "width": 128, - "height": 64, - "rotation": 0, - "spritesheet": 3 - }, - "edit_downBtn2_001": { - "x": 3759, - "y": 3373, - "width": 74, - "height": 80, - "rotation": 0, - "spritesheet": 3 - }, - "edit_downBtn3_001": { - "x": 3597, - "y": 3449, - "width": 75, - "height": 80, - "rotation": 90, - "spritesheet": 3 - }, - "edit_downBtn_001": { - "x": 3521, - "y": 1209, - "width": 84, - "height": 58, - "rotation": 0, - "spritesheet": 3 - }, - "edit_editBtn_001": { - "x": 1585, - "y": 2924, - "width": 296, - "height": 98, - "rotation": 90, - "spritesheet": 3 - }, - "edit_editSBtn_001": { - "x": 1684, - "y": 2922, - "width": 296, - "height": 98, - "rotation": 90, - "spritesheet": 3 - }, - "edit_enableRotateBtn_001": { - "x": 1770, - "y": 3324, - "width": 116, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "edit_flipXBtn_001": { - "x": 4017, - "y": 1702, - "width": 124, - "height": 62, - "rotation": 90, - "spritesheet": 3 - }, - "edit_flipYBtn_001": { - "x": 4017, - "y": 1577, - "width": 62, - "height": 124, - "rotation": 0, - "spritesheet": 3 - }, - "edit_freeMoveBtn_001": { - "x": 2623, - "y": 3164, - "width": 112, - "height": 76, - "rotation": 0, - "spritesheet": 3 - }, - "edit_freeRotateBtn_001": { - "x": 3792, - "y": 269, - "width": 100, - "height": 112, - "rotation": 0, - "spritesheet": 3 - }, - "edit_leftBtn2_001": { - "x": 3676, - "y": 3373, - "width": 82, - "height": 74, - "rotation": 0, - "spritesheet": 3 - }, - "edit_leftBtn3_001": { - "x": 3834, - "y": 3367, - "width": 82, - "height": 74, - "rotation": 0, - "spritesheet": 3 - }, - "edit_leftBtn_001": { - "x": 3615, - "y": 2178, - "width": 58, - "height": 84, - "rotation": 0, - "spritesheet": 3 - }, - "edit_rightBtn2_001": { - "x": 3844, - "y": 3442, - "width": 82, - "height": 74, - "rotation": 90, - "spritesheet": 3 - }, - "edit_rightBtn3_001": { - "x": 3964, - "y": 3370, - "width": 82, - "height": 74, - "rotation": 0, - "spritesheet": 3 - }, - "edit_rightBtn_001": { - "x": 3615, - "y": 2263, - "width": 58, - "height": 84, - "rotation": 0, - "spritesheet": 3 - }, - "edit_rotate45lBtn_001": { - "x": 525, - "y": 2095, - "width": 100, - "height": 110, - "rotation": 90, - "spritesheet": 3 - }, - "edit_rotate45rBtn_001": { - "x": 3979, - "y": 596, - "width": 100, - "height": 110, - "rotation": 0, - "spritesheet": 3 - }, - "edit_rotateSnapBtn_001": { - "x": 3970, - "y": 1087, - "width": 100, - "height": 110, - "rotation": 0, - "spritesheet": 3 - }, - "edit_snapBtn_001": { - "x": 271, - "y": 3045, - "width": 116, - "height": 106, - "rotation": 0, - "spritesheet": 3 - }, - "edit_swipeBtn_001": { - "x": 1891, - "y": 3487, - "width": 122, - "height": 30, - "rotation": 0, - "spritesheet": 3 - }, - "edit_upBtn2_001": { - "x": 3678, - "y": 3448, - "width": 74, - "height": 80, - "rotation": 90, - "spritesheet": 3 - }, - "edit_upBtn3_001": { - "x": 3919, - "y": 3445, - "width": 74, - "height": 80, - "rotation": 0, - "spritesheet": 3 - }, - "edit_upBtn_001": { - "x": 3540, - "y": 3276, - "width": 84, - "height": 58, - "rotation": 90, - "spritesheet": 3 - }, - "edit_vLine_001": { - "x": 986, - "y": 3513, - "width": 6, - "height": 316, - "rotation": 90, - "spritesheet": 3 - }, - "exMark_001": { - "x": 1992, - "y": 1508, - "width": 72, - "height": 170, - "rotation": 90, - "spritesheet": 3 - }, - "explosionIcon_01_001": { - "x": 3499, - "y": 3040, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_02_001": { - "x": 2743, - "y": 2563, - "width": 140, - "height": 126, - "rotation": 90, - "spritesheet": 3 - }, - "explosionIcon_03_001": { - "x": 3740, - "y": 1749, - "width": 129, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "explosionIcon_04_001": { - "x": 3817, - "y": 2802, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_05_001": { - "x": 3952, - "y": 2790, - "width": 122, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_06_001": { - "x": 2907, - "y": 1473, - "width": 120, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_07_001": { - "x": 3935, - "y": 381, - "width": 125, - "height": 144, - "rotation": 90, - "spritesheet": 3 - }, - "explosionIcon_08_001": { - "x": 3567, - "y": 2796, - "width": 124, - "height": 124, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_09_001": { - "x": 3620, - "y": 3042, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_10_001": { - "x": 3473, - "y": 961, - "width": 166, - "height": 126, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_11_001": { - "x": 3741, - "y": 3046, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_12_001": { - "x": 3862, - "y": 3046, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_13_001": { - "x": 3132, - "y": 3033, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_14_001": { - "x": 2262, - "y": 1502, - "width": 144, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_15_001": { - "x": 2743, - "y": 2704, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_16_001": { - "x": 3692, - "y": 2798, - "width": 124, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "explosionIcon_17_001": { - "x": 3936, - "y": 2135, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "featuredLabel_001": { - "x": 1, - "y": 2401, - "width": 773, - "height": 148, - "rotation": 90, - "spritesheet": 3 - }, - "fireShardBig_001": { - "x": 2617, - "y": 2878, - "width": 110, - "height": 142, - "rotation": 0, - "spritesheet": 3 - }, - "fireShardLabel_001": { - "x": 1419, - "y": 818, - "width": 406, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "fireShardSmall_001": { - "x": 4037, - "y": 1198, - "width": 42, - "height": 54, - "rotation": 0, - "spritesheet": 3 - }, - "friends_tab_off_001": { - "x": 271, - "y": 2307, - "width": 368, - "height": 116, - "rotation": 90, - "spritesheet": 3 - }, - "friends_tab_on_001": { - "x": 271, - "y": 2676, - "width": 368, - "height": 116, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_01_001": { - "x": 3806, - "y": 1087, - "width": 163, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_02_001": { - "x": 3855, - "y": 1250, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_03_001": { - "x": 3853, - "y": 1577, - "width": 163, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_04_001": { - "x": 2415, - "y": 1940, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_05_001": { - "x": 2578, - "y": 1929, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_06_001": { - "x": 2300, - "y": 2115, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_07_001": { - "x": 2463, - "y": 2104, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_08_001": { - "x": 2417, - "y": 2442, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_09_001": { - "x": 2570, - "y": 2268, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_10_001": { - "x": 2626, - "y": 2093, - "width": 163, - "height": 162, - "rotation": 90, - "spritesheet": 3 - }, - "gIcon_11_001": { - "x": 2580, - "y": 2431, - "width": 162, - "height": 162, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_12_001": { - "x": 3193, - "y": 1441, - "width": 164, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_13_001": { - "x": 3651, - "y": 629, - "width": 164, - "height": 165, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_14_001": { - "x": 3640, - "y": 1126, - "width": 165, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_15_001": { - "x": 3690, - "y": 1291, - "width": 164, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_16_001": { - "x": 3358, - "y": 1436, - "width": 165, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "gIcon_17_001": { - "x": 3524, - "y": 1291, - "width": 165, - "height": 164, - "rotation": 0, - "spritesheet": 3 - }, - "garageRope_001": { - "x": 1145, - "y": 1015, - "width": 147, - "height": 268, - "rotation": 90, - "spritesheet": 3 - }, - "gauntletCorner_001": { - "x": 2248, - "y": 530, - "width": 280, - "height": 278, - "rotation": 0, - "spritesheet": 3 - }, - "gjItem_01_001": { - "x": 2259, - "y": 3423, - "width": 170, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "gjItem_02_001": { - "x": 2430, - "y": 3423, - "width": 170, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "gjItem_03_001": { - "x": 2601, - "y": 3423, - "width": 170, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "gjItem_04_001": { - "x": 2882, - "y": 3246, - "width": 138, - "height": 124, - "rotation": 90, - "spritesheet": 3 - }, - "gjItem_05_001": { - "x": 3153, - "y": 557, - "width": 170, - "height": 102, - "rotation": 0, - "spritesheet": 3 - }, - "gj_ballBtn_off_001": { - "x": 3805, - "y": 2145, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_ballBtn_on_001": { - "x": 3805, - "y": 2274, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_birdBtn_off_001": { - "x": 3936, - "y": 2006, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_birdBtn_on_001": { - "x": 3889, - "y": 2403, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_dailyCrown_001": { - "x": 962, - "y": 2412, - "width": 327, - "height": 218, - "rotation": 90, - "spritesheet": 3 - }, - "gj_dartBtn_off_001": { - "x": 3172, - "y": 2666, - "width": 126, - "height": 128, - "rotation": 90, - "spritesheet": 3 - }, - "gj_dartBtn_on_001": { - "x": 3313, - "y": 2523, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_explosionBtn_off_001": { - "x": 3440, - "y": 2520, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_explosionBtn_on_001": { - "x": 3567, - "y": 2542, - "width": 126, - "height": 128, - "rotation": 90, - "spritesheet": 3 - }, - "gj_fbIcon_001": { - "x": 3932, - "y": 2258, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "gj_findBtnOff_001": { - "x": 3888, - "y": 1873, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "gj_findBtn_001": { - "x": 3805, - "y": 2012, - "width": 130, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "gj_folderBtn_001": { - "x": 2772, - "y": 3391, - "width": 134, - "height": 110, - "rotation": 90, - "spritesheet": 3 - }, - "gj_globalRankTxt_001": { - "x": 3436, - "y": 932, - "width": 170, - "height": 36, - "rotation": 90, - "spritesheet": 3 - }, - "gj_heartOff_001": { - "x": 3372, - "y": 3154, - "width": 118, - "height": 114, - "rotation": 90, - "spritesheet": 3 - }, - "gj_heartOn_001": { - "x": 3487, - "y": 3161, - "width": 118, - "height": 114, - "rotation": 0, - "spritesheet": 3 - }, - "gj_iconBtn_off_001": { - "x": 3696, - "y": 2544, - "width": 126, - "height": 128, - "rotation": 90, - "spritesheet": 3 - }, - "gj_iconBtn_on_001": { - "x": 3825, - "y": 2544, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_linkBtnOff_001": { - "x": 3130, - "y": 3154, - "width": 118, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "gj_linkBtn_001": { - "x": 3251, - "y": 3154, - "width": 118, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "gj_robotBtn_off_001": { - "x": 3952, - "y": 2532, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_robotBtn_on_001": { - "x": 3440, - "y": 2649, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_shipBtn_off_001": { - "x": 3313, - "y": 2652, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_shipBtn_on_001": { - "x": 3567, - "y": 2669, - "width": 126, - "height": 128, - "rotation": 90, - "spritesheet": 3 - }, - "gj_spiderBtn_off_001": { - "x": 3696, - "y": 2671, - "width": 126, - "height": 128, - "rotation": 90, - "spritesheet": 3 - }, - "gj_spiderBtn_on_001": { - "x": 3825, - "y": 2673, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_streakBtn_off_001": { - "x": 3952, - "y": 2661, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_streakBtn_on_001": { - "x": 3440, - "y": 2778, - "width": 126, - "height": 128, - "rotation": 0, - "spritesheet": 3 - }, - "gj_twIcon_001": { - "x": 3013, - "y": 2683, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "gj_twitchIcon_001": { - "x": 2623, - "y": 2594, - "width": 124, - "height": 119, - "rotation": 90, - "spritesheet": 3 - }, - "gj_weeklyCrown_001": { - "x": 986, - "y": 3292, - "width": 327, - "height": 220, - "rotation": 0, - "spritesheet": 3 - }, - "gj_ytIcon_001": { - "x": 3013, - "y": 2806, - "width": 122, - "height": 122, - "rotation": 0, - "spritesheet": 3 - }, - "global_tab_off_001": { - "x": 3523, - "y": 148, - "width": 369, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "global_tab_on_001": { - "x": 150, - "y": 2693, - "width": 368, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "gplusSignIn_001": { - "x": 873, - "y": 3161, - "width": 360, - "height": 112, - "rotation": 90, - "spritesheet": 3 - }, - "gplusSignOut_001": { - "x": 2250, - "y": 417, - "width": 360, - "height": 112, - "rotation": 0, - "spritesheet": 3 - }, - "groundSquareShadow_001": { - "x": 672, - "y": 1183, - "width": 504, - "height": 512, - "rotation": 0, - "spritesheet": 3 - }, - "hallOfFameLabel_001": { - "x": 376, - "y": 1183, - "width": 1021, - "height": 148, - "rotation": 90, - "spritesheet": 3 - }, - "highObjectIcon_001": { - "x": 3917, - "y": 3367, - "width": 46, - "height": 46, - "rotation": 0, - "spritesheet": 3 - }, - "iceShardBig_001": { - "x": 2623, - "y": 3021, - "width": 110, - "height": 142, - "rotation": 0, - "spritesheet": 3 - }, - "iceShardLabel_001": { - "x": 1164, - "y": 1696, - "width": 369, - "height": 60, - "rotation": 90, - "spritesheet": 3 - }, - "iceShardSmall_001": { - "x": 1983, - "y": 2878, - "width": 42, - "height": 54, - "rotation": 90, - "spritesheet": 3 - }, - "lavaShardBig_001": { - "x": 2870, - "y": 2683, - "width": 110, - "height": 142, - "rotation": 90, - "spritesheet": 3 - }, - "lavaShardLabel_001": { - "x": 1500, - "y": 644, - "width": 416, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "lavaShardSmall_001": { - "x": 2300, - "y": 2279, - "width": 42, - "height": 54, - "rotation": 90, - "spritesheet": 3 - }, - "levelLeaderboard_friendsBtn_001": { - "x": 2733, - "y": 2833, - "width": 136, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "levelLeaderboard_globalBtn_001": { - "x": 2873, - "y": 2905, - "width": 136, - "height": 132, - "rotation": 0, - "spritesheet": 3 - }, - "levelLeaderboard_globalWeeklyBtn_001": { - "x": 2875, - "y": 3038, - "width": 136, - "height": 132, - "rotation": 90, - "spritesheet": 3 - }, - "miniSkull_001": { - "x": 3268, - "y": 825, - "width": 108, - "height": 102, - "rotation": 90, - "spritesheet": 3 - }, - "modBadge_01_001": { - "x": 3973, - "y": 3281, - "width": 88, - "height": 88, - "rotation": 0, - "spritesheet": 3 - }, - "modBadge_02_001": { - "x": 3437, - "y": 3381, - "width": 88, - "height": 88, - "rotation": 0, - "spritesheet": 3 - }, - "navArrowBtn_001": { - "x": 1787, - "y": 879, - "width": 106, - "height": 240, - "rotation": 0, - "spritesheet": 3 - }, - "playerSquare_001": { - "x": 3253, - "y": 3033, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_01_001": { - "x": 3010, - "y": 2929, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_02_001": { - "x": 3008, - "y": 3050, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_03_001": { - "x": 3008, - "y": 3171, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_04_001": { - "x": 3136, - "y": 2793, - "width": 121, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_05_001": { - "x": 3014, - "y": 3385, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_06_001": { - "x": 3195, - "y": 3273, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "player_special_07_001": { - "x": 3316, - "y": 3273, - "width": 120, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "poisonShardBig_001": { - "x": 2870, - "y": 2794, - "width": 110, - "height": 142, - "rotation": 90, - "spritesheet": 3 - }, - "poisonShardLabel_001": { - "x": 2253, - "y": 235, - "width": 501, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "poisonShardSmall_001": { - "x": 1955, - "y": 410, - "width": 42, - "height": 54, - "rotation": 0, - "spritesheet": 3 - }, - "poweredBy_001": { - "x": 158, - "y": 3467, - "width": 246, - "height": 54, - "rotation": 0, - "spritesheet": 3 - }, - "rankIcon_1_001": { - "x": 1695, - "y": 1997, - "width": 128, - "height": 104, - "rotation": 0, - "spritesheet": 3 - }, - "rankIcon_all_001": { - "x": 4019, - "y": 1827, - "width": 76, - "height": 60, - "rotation": 90, - "spritesheet": 3 - }, - "rankIcon_top1000_001": { - "x": 3759, - "y": 3454, - "width": 84, - "height": 68, - "rotation": 0, - "spritesheet": 3 - }, - "rankIcon_top100_001": { - "x": 3423, - "y": 1740, - "width": 104, - "height": 84, - "rotation": 0, - "spritesheet": 3 - }, - "rankIcon_top10_001": { - "x": 2682, - "y": 709, - "width": 120, - "height": 98, - "rotation": 0, - "spritesheet": 3 - }, - "rankIcon_top200_001": { - "x": 3528, - "y": 1740, - "width": 96, - "height": 78, - "rotation": 90, - "spritesheet": 3 - }, - "rankIcon_top500_001": { - "x": 3526, - "y": 3381, - "width": 88, - "height": 70, - "rotation": 90, - "spritesheet": 3 - }, - "rankIcon_top50_001": { - "x": 2532, - "y": 1487, - "width": 112, - "height": 90, - "rotation": 90, - "spritesheet": 3 - }, - "rewardCorner_001": { - "x": 2283, - "y": 1109, - "width": 192, - "height": 190, - "rotation": 90, - "spritesheet": 3 - }, - "rewardsLabel_001": { - "x": 3155, - "y": 1, - "width": 740, - "height": 146, - "rotation": 0, - "spritesheet": 3 - }, - "robtoplogo_small": { - "x": 1419, - "y": 705, - "width": 400, - "height": 112, - "rotation": 0, - "spritesheet": 3 - }, - "secretCoinUI2_001": { - "x": 2259, - "y": 3248, - "width": 176, - "height": 174, - "rotation": 0, - "spritesheet": 3 - }, - "secretCoinUI_001": { - "x": 2436, - "y": 3248, - "width": 175, - "height": 174, - "rotation": 0, - "spritesheet": 3 - }, - "secretDoorBtn2_closed_001": { - "x": 1225, - "y": 1681, - "width": 199, - "height": 266, - "rotation": 0, - "spritesheet": 3 - }, - "secretDoorBtn2_open_001": { - "x": 1047, - "y": 2120, - "width": 274, - "height": 266, - "rotation": 90, - "spritesheet": 3 - }, - "secretDoorBtn_closed_001": { - "x": 2682, - "y": 530, - "width": 132, - "height": 178, - "rotation": 0, - "spritesheet": 3 - }, - "secretDoorBtn_open_001": { - "x": 2074, - "y": 3248, - "width": 184, - "height": 178, - "rotation": 0, - "spritesheet": 3 - }, - "shadowShardBig_001": { - "x": 2771, - "y": 3248, - "width": 110, - "height": 142, - "rotation": 0, - "spritesheet": 3 - }, - "shadowShardLabel_001": { - "x": 2253, - "y": 113, - "width": 538, - "height": 60, - "rotation": 0, - "spritesheet": 3 - }, - "shadowShardSmall_001": { - "x": 4024, - "y": 3191, - "width": 42, - "height": 54, - "rotation": 0, - "spritesheet": 3 - }, - "shardShadow_001": { - "x": 2576, - "y": 1636, - "width": 128, - "height": 160, - "rotation": 90, - "spritesheet": 3 - }, - "shard_glow_001": { - "x": 1666, - "y": 1814, - "width": 182, - "height": 214, - "rotation": 90, - "spritesheet": 3 - }, - "shardsOfPowerLabel_001": { - "x": 251, - "y": 1183, - "width": 1123, - "height": 124, - "rotation": 90, - "spritesheet": 3 - }, - "shineBurst_001": { - "x": 1815, - "y": 2152, - "width": 170, - "height": 170, - "rotation": 0, - "spritesheet": 3 - }, - "shopRope_001": { - "x": 1504, - "y": 359, - "width": 284, - "height": 450, - "rotation": 90, - "spritesheet": 3 - }, - "star_small01_001": { - "x": 405, - "y": 3467, - "width": 50, - "height": 50, - "rotation": 0, - "spritesheet": 3 - }, - "storeItemIcon_001": { - "x": 2175, - "y": 1502, - "width": 78, - "height": 84, - "rotation": 90, - "spritesheet": 3 - }, - "top_tab_off_001": { - "x": 465, - "y": 3154, - "width": 368, - "height": 120, - "rotation": 90, - "spritesheet": 3 - }, - "top_tab_on_001": { - "x": 2250, - "y": 296, - "width": 368, - "height": 120, - "rotation": 0, - "spritesheet": 3 - }, - "treasureRoomLabel_001": { - "x": 1, - "y": 1183, - "width": 1217, - "height": 112, - "rotation": 90, - "spritesheet": 3 - }, - "uiDot_001": { - "x": 1961, - "y": 1323, - "width": 30, - "height": 32, - "rotation": 0, - "spritesheet": 3 - }, - "usercoin_small01_001": { - "x": 1164, - "y": 2066, - "width": 50, - "height": 52, - "rotation": 0, - "spritesheet": 3 - }, - "weeklyLevelLabel_001": { - "x": 114, - "y": 1183, - "width": 1140, - "height": 136, - "rotation": 90, - "spritesheet": 3 - } -} \ No newline at end of file