diff --git a/src/eventsFunctionsExtensions/button.json b/src/eventsFunctionsExtensions/button.json index 918a347b3..f25154f8c 100644 --- a/src/eventsFunctionsExtensions/button.json +++ b/src/eventsFunctionsExtensions/button.json @@ -960,7 +960,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "ANIMATION_UP" }, { @@ -970,7 +969,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "ANIMATION_OVER" }, { @@ -980,7 +978,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "ANIMATION_DOWN" }, { @@ -990,7 +987,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "ANIMATION_DISABLED" }, { @@ -1000,7 +996,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "ENABLED" } ], diff --git a/src/eventsFunctionsExtensions/isonscreen.json b/src/eventsFunctionsExtensions/isonscreen.json new file mode 100644 index 000000000..0dcf9337a --- /dev/null +++ b/src/eventsFunctionsExtensions/isonscreen.json @@ -0,0 +1,129 @@ +{ + "author": "Silver-Streak, @Bouh, Tristan Rhodes", + "category": "Game mechanic", + "extensionNamespace": "", + "fullName": "Object \"Is On Screen\" Detection", + "helpPath": "", + "iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0ibWRpLW1vbml0b3Itc2NyZWVuc2hvdCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik05LDZINVYxMEg3VjhIOU0xOSwxMEgxN1YxMkgxNVYxNEgxOU0yMSwxNkgzVjRIMjFNMjEsMkgzQzEuODksMiAxLDIuODkgMSw0VjE2QTIsMiAwIDAsMCAzLDE4SDEwVjIwSDhWMjJIMTZWMjBIMTRWMThIMjFBMiwyIDAgMCwwIDIzLDE2VjRDMjMsMi44OSAyMi4xLDIgMjEsMiIgLz48L3N2Zz4=", + "name": "IsOnScreen", + "previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/monitor-screenshot.svg", + "shortDescription": "This adds a condition to detect if an object is on screen based off its current layer.", + "version": "1.2.1", + "description": [ + "This extension adds conditions to check if an object is located within the visible portion of its layer's camera. The condition also allows for specifying padding to the virtual screen border.", + "", + "Note that this does not take into account any object visibility, such as being hidden or 0 opacity, but can be combined with those existing conditions." + ], + "origin": { + "identifier": "IsOnScreen", + "name": "gdevelop-extension-store" + }, + "tags": [ + "is on screen", + "condition", + "visible", + "hide", + "screen" + ], + "authorIds": [ + "2OwwM8ToR9dx9RJ2sAKTcrLmCB92", + "8Ih1aa8f5gWUp4UB2BdhQ2iXWxJ3", + "gqDaZjCfevOOxBYkK6zlhtZnXCg1" + ], + "dependencies": [], + "eventsFunctions": [], + "eventsBasedBehaviors": [ + { + "description": "This behavior provides a condition to check if the object is located within the visible portion of its layer's camera. The condition also allows for specifying padding to the virtual screen border.\nNote that object visibility, such as being hidden or 0 opacity, is not considered (but you can use those existing conditions in addition to this behavior).", + "fullName": "Is on screen", + "name": "InOnScreen", + "objectType": "", + "eventsFunctions": [ + { + "description": "Checks if an object position is within the viewport of its layer.", + "fullName": "Is on screen", + "functionType": "Condition", + "name": "IsOnScreen", + "sentence": "_PARAM0_ is on screen (padded by _PARAM2_ pixels)", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "/*", + "Get the object layer, convert the position from this layer to the screen coordinates.", + "Get the point on each side on the object on screen, and compare with the screen area.", + "", + "This way even if the camera has a rotation or custom scale the object is always compared to the screen area.", + "*/", + "", + "", + "// Get the layer of the object.", + "const object = objects[0];", + "const layer = runtimeScene.getLayer(object.getLayer());", + "", + "// Get the aabb of the object on his layer.", + "const aabb = object.getVisibilityAABB();", + "", + "// Get the layer to convert the coordinates of the AABB to the screen coordinates", + "const topLeft = layer.convertInverseCoords(aabb.min[0], aabb.min[1]);", + "const topRight = layer.convertInverseCoords(aabb.max[0], aabb.min[1]);", + "const bottomRight = layer.convertInverseCoords(aabb.max[0], aabb.max[1]);", + "const bottomLeft = layer.convertInverseCoords(aabb.min[0], aabb.max[1]);", + "", + "// Get the points on each side of the object on screen.", + "const posLeftObjectOnScreen = Math.min(topLeft[0], topRight[0], bottomLeft[0], bottomRight[0]);", + "const posRightObjectOnScreen = Math.max(topLeft[0], topRight[0], bottomLeft[0], bottomRight[0]);", + "const posUpObjectOnScreen = Math.min(topLeft[1], topRight[1], bottomLeft[1], bottomRight[1]);", + "const posDownObjectOnScreen = Math.max(topLeft[1], topRight[1], bottomLeft[1], bottomRight[1]);", + "", + "const padding = eventsFunctionContext.getArgument(\"Padding\");", + "", + "if (", + " !(posLeftObjectOnScreen - padding > runtimeScene.getGame().getGameResolutionWidth() ||", + " posUpObjectOnScreen - padding > runtimeScene.getGame().getGameResolutionHeight() ||", + " posRightObjectOnScreen + padding < 0 ||", + " posDownObjectOnScreen + padding < 0", + " )", + ") {", + " eventsFunctionContext.returnValue = true;", + "}", + "" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "IsOnScreen::InOnScreen", + "type": "behavior" + }, + { + "description": "Padding (in pixels)", + "longDescription": "Number of pixels to pad the screen border. Zero by default. A negative value goes inside the screen, a positive value go outside.", + "name": "Padding", + "type": "expression" + } + ], + "objectGroups": [ + { + "name": "Group", + "objects": [] + } + ] + } + ], + "propertyDescriptors": [], + "sharedPropertyDescriptors": [] + } + ], + "eventsBasedObjects": [] +} \ No newline at end of file diff --git a/src/eventsFunctionsExtensions/panelspritecontinuousbar.json b/src/eventsFunctionsExtensions/panelspritecontinuousbar.json index f6c38ef20..e87f2d606 100644 --- a/src/eventsFunctionsExtensions/panelspritecontinuousbar.json +++ b/src/eventsFunctionsExtensions/panelspritecontinuousbar.json @@ -651,7 +651,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "Value" }, { @@ -661,7 +660,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "MaxValue" }, { @@ -681,7 +679,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "PreviousHighValueDuration" } ], @@ -2266,7 +2263,6 @@ "FillBar", "Buffer" ], - "hidden": false, "name": "BarLeftPadding" }, { @@ -2280,7 +2276,6 @@ "FillBar", "Buffer" ], - "hidden": false, "name": "BarTopPadding" }, { @@ -2294,7 +2289,6 @@ "FillBar", "Buffer" ], - "hidden": false, "name": "BarRightPadding" }, { @@ -2308,7 +2302,6 @@ "FillBar", "Buffer" ], - "hidden": false, "name": "BarBottomPadding" }, { @@ -2318,7 +2311,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "MaxValue" }, { @@ -2328,7 +2320,6 @@ "description": "", "group": "", "extraInformation": [], - "hidden": false, "name": "InitialValue" }, { @@ -2348,7 +2339,6 @@ "description": "", "group": "Animation", "extraInformation": [], - "hidden": false, "name": "PreviousHighValueDuration" }, { @@ -2358,7 +2348,6 @@ "description": "", "group": "Animation", "extraInformation": [], - "hidden": false, "name": "EasingDuration" }, { @@ -2370,7 +2359,6 @@ "extraInformation": [ "Label" ], - "hidden": false, "name": "ShowLabel" }, { @@ -2430,6 +2418,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "2 / 3", + "font": "", + "textAlignment": "center", + "characterSize": 20, + "color": "0;0;0" } }, { diff --git a/src/eventsFunctionsExtensions/sticker.json b/src/eventsFunctionsExtensions/sticker.json new file mode 100644 index 000000000..da8c0d055 --- /dev/null +++ b/src/eventsFunctionsExtensions/sticker.json @@ -0,0 +1,616 @@ +{ + "author": "D8H", + "category": "Movement", + "extensionNamespace": "", + "fullName": "Stick objects to others", + "helpPath": "", + "iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0ibWRpLXN0aWNrZXItb3V0bGluZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik01LjUgMkMzLjYgMiAyIDMuNiAyIDUuNVYxOC41QzIgMjAuNCAzLjYgMjIgNS41IDIySDE2TDIyIDE2VjUuNUMyMiAzLjYgMjAuNCAyIDE4LjUgMkg1LjVNNS44IDRIMTguM0MxOS4zIDQgMjAuMSA0LjggMjAuMSA1LjhWMTVIMTguNkMxNi43IDE1IDE1LjEgMTYuNiAxNS4xIDE4LjVWMjBINS44QzQuOCAyMCA0IDE5LjIgNCAxOC4yVjUuOEM0IDQuOCA0LjggNCA1LjggNCIgLz48L3N2Zz4=", + "name": "Sticker", + "previewIconUrl": "https://resources.gdevelop-app.com/assets/Icons/sticker-outline.svg", + "shortDescription": "Make objects follow the position and rotation of the object they are stuck to.", + "version": "0.5.1", + "description": [ + "This extension can be useful to:", + "* Stick accessories to moving objects", + "* Animate a skeleton", + "* Delete an object with another one", + "", + "An example allows to check it out ([open the project online](https://editor.gdevelop.io/?project=example://stick-objects))." + ], + "origin": { + "identifier": "Sticker", + "name": "gdevelop-extension-store" + }, + "tags": [ + "sticker", + "stick", + "follow", + "skeleton", + "joint", + "pin", + "bind", + "glue", + "tie", + "attach", + "hold", + "paste", + "wear" + ], + "authorIds": [ + "IWykYNRvhCZBN3vEgKEbBPOR3Oc2" + ], + "dependencies": [], + "eventsFunctions": [ + { + "description": "Define helper classes JavaScript code.", + "fullName": "Define helper classes", + "functionType": "Action", + "name": "DefineHelperClasses", + "private": true, + "sentence": "Define helper classes JavaScript code", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "if (gdjs._stickerExtension) {", + " return;", + "}", + "", + "// Unstick from deleted objects.", + "gdjs.registerObjectDeletedFromSceneCallback(function (runtimeScene, deletedObject) {", + " const extension = runtimeScene._stickerExtension;", + " if (!extension) {", + " return;", + " }", + " const allStickers = runtimeScene._stickerExtension.allStickers;", + " for (const behavior of allStickers) {", + " const sticker = behavior._sticker;", + " if (sticker.isStuckTo(deletedObject)) {", + " if (behavior._getIsDestroyedWithParent()) {", + " behavior.owner.deleteFromScene(runtimeScene);", + " }", + " sticker.unstick();", + " }", + " }", + "});", + "", + "class Sticker {", + " /** @type {gdjs.RuntimeBehavior} */", + " behavior;", + " /** @type {gdjs.RuntimeObject | null} */", + " basisObject;", + " followingDoneThisFrame = false;", + " relativeX = 0;", + " relativeY = 0;", + " relativeAngle = 0;", + " relativeRotatedX = 0;", + " relativeRotatedY = 0;", + " basisOldX = 0;", + " basisOldY = 0;", + " basisOldAngle = 0;", + " basisOldWidth = 0;", + " basisOldHeight = 0;", + " basisOldCenterXInScene = 0;", + " basisOldCenterYInScene = 0;", + "", + " /**", + " * @param {gdjs.RuntimeBehavior} behavior", + " */", + " constructor(behavior) {", + " this.behavior = behavior;", + " }", + "", + " /**", + " * @param {gdjs.RuntimeObject} basisObject", + " */", + " isStuckTo(basisObject) {", + " return this.basisObject === basisObject;", + " }", + "", + " /**", + " * @param {gdjs.RuntimeObject} basisObject", + " */", + " stickTo(basisObject) {", + " this.basisObject = basisObject;", + " this.updateOldCoordinates();", + " this.updateRelativeCoordinates();", + " }", + "", + " unstick() {", + " this.basisObject = null;", + " }", + "", + " onStepPreEvents() {", + " this.followingDoneThisFrame = false;", + " }", + "", + " /**", + " * Update the coordinates in the basisObject basis.", + " * ", + " * It uses the basisObject coordinates from the previous frame.", + " * This way, the sticker can move relatively to it and still", + " * follow basisObject.", + " * ", + " * @param {gdjs.RuntimeObject} basisObject", + " */", + " updateRelativeCoordinates() {", + " const object = this.behavior.owner;", + "", + " // Update relative coordinates", + " this.relativeX = object.getX() - this.basisOldX;", + " this.relativeY = object.getY() - this.basisOldY;", + " if (!this.behavior._getOnlyFollowPosition()) {", + " this.relativeAngle = object.getAngle() - this.basisOldAngle;", + " this.relativeWidth = object.getWidth() / this.basisOldWidth;", + " this.relativeHeight = object.getHeight() / this.basisOldHeight;", + " const deltaX = object.getCenterXInScene() - this.basisOldCenterXInScene;", + " const deltaY = object.getCenterYInScene() - this.basisOldCenterYInScene;", + " const angle = this.basisOldAngle * Math.PI / 180;", + " this.relativeRotatedX = (deltaX * Math.cos(angle) + deltaY * Math.sin(angle)) / this.basisOldWidth;", + " this.relativeRotatedY = (-deltaX * Math.sin(angle) + deltaY * Math.cos(angle)) / this.basisOldHeight;", + "", + " // Save initial values to avoid calculus and rounding errors", + " this.basisOriginalWidth = this.basisObject.getWidth();", + " this.basisOriginalHeight = this.basisObject.getHeight();", + " this.basisOriginalAngle = this.basisObject.getAngle();", + " }", + " }", + "", + " /**", + " * Copy the coordinates to use it the next frame.", + " */", + " updateOldCoordinates() {", + " const object = this.behavior.owner;", + "", + " this.ownerOldX = object.getX();", + " this.ownerOldY = object.getY();", + "", + " this.basisOldX = this.basisObject.getX();", + " this.basisOldY = this.basisObject.getY();", + "", + " if (!this.behavior._getOnlyFollowPosition()) {", + " this.ownerOldAngle = object.getAngle();", + " this.ownerOldWidth = object.getWidth();", + " this.ownerOldHeight = object.getHeight();", + "", + " this.basisOldAngle = this.basisObject.getAngle();", + " this.basisOldWidth = this.basisObject.getWidth();", + " this.basisOldHeight = this.basisObject.getHeight();", + " this.basisOldCenterXInScene = this.basisObject.getCenterXInScene();", + " this.basisOldCenterYInScene = this.basisObject.getCenterYInScene();", + " }", + " }", + "", + " /**", + " * Follow the basisObject (called in doStepPostEvents).", + " * ", + " * This method is also called by children to ensure", + " * parents are updated first.", + " */", + " followBasisObject() {", + " if (this.followingDoneThisFrame) {", + " return;", + " }", + " this.followingDoneThisFrame = true;", + " const basisObject = this.basisObject;", + " if (basisObject) {", + " // If the behavior on the basis object has a different name,", + " // the objects will still follow their basis objects", + " // but frame delays could happen.", + " const behaviorName = this.behavior.getName();", + " if (basisObject.hasBehavior(behaviorName)) {", + " const basisBehavior = basisObject.getBehavior(behaviorName);", + " if (basisBehavior.type === this.behavior.type) {", + " // Follow parents 1st to avoid frame delays", + " basisBehavior._sticker.followBasisObject();", + " }", + " }", + "", + " const object = this.behavior.owner;", + "", + " if (this.behavior._getOnlyFollowPosition()) {", + " if (object.getX() !== this.ownerOldX", + " || object.getY() !== this.ownerOldY) {", + " this.updateRelativeCoordinates();", + " }", + "", + " if (this.basisOldX !== basisObject.getX() ||", + " this.basisOldY !== basisObject.getY()) {", + " object.setPosition(", + " basisObject.getX() + this.relativeX,", + " basisObject.getY() + this.relativeY);", + " }", + " } else {", + " if (object.getX() !== this.ownerOldX", + " || object.getY() !== this.ownerOldY", + " || object.getAngle() !== this.ownerOldAngle", + " || object.getWidth() !== this.ownerOldWidth", + " || object.getHeight() !== this.ownerOldHeight) {", + " this.updateRelativeCoordinates();", + " }", + "", + " // Follow basisObject", + " if (basisObject.getAngle() === this.basisOriginalAngle && this.basisOriginalAngle === 0) {", + " if (basisObject.getWidth() === this.basisOriginalWidth ||", + " basisObject.getHeight() === this.basisOriginalHeight) {", + " if (this.basisOldX !== basisObject.getX() ||", + " this.basisOldY !== basisObject.getY()) {", + " object.setPosition(", + " basisObject.getX() + this.relativeX,", + " basisObject.getY() + this.relativeY);", + " }", + " } else {", + " object.setCenterPositionInScene(", + " basisObject.getCenterXInScene() + this.relativeRotatedX * basisObject.getWidth(),", + " basisObject.getCenterYInScene() + this.relativeRotatedY * basisObject.getHeight());", + " }", + " } else {", + " object.setAngle(basisObject.getAngle() + this.relativeAngle);", + "", + " const deltaX = this.relativeRotatedX * basisObject.getWidth();", + " const deltaY = this.relativeRotatedY * basisObject.getHeight();", + " const angle = -basisObject.getAngle() * Math.PI / 180;", + " object.setX(basisObject.getCenterXInScene() + object.getX() - object.getCenterXInScene() + deltaX * Math.cos(angle) + deltaY * Math.sin(angle));", + " object.setY(basisObject.getCenterYInScene() + object.getY() - object.getCenterYInScene() - deltaX * Math.sin(angle) + deltaY * Math.cos(angle));", + " }", + " // Unproportional dimensions changes won't work as expected", + " // if the object angle is not null but nothing more can be done", + " // because there is no full affine transformation on objects.", + " if (basisObject.getWidth() !== this.basisOriginalWidth) {", + " object.setWidth(this.relativeWidth * basisObject.getWidth());", + " }", + " if (basisObject.getHeight() !== this.basisOriginalHeight) {", + " object.setHeight(this.relativeHeight * basisObject.getHeight());", + " }", + " }", + "", + " this.updateOldCoordinates();", + " }", + " }", + "}", + "", + "gdjs._stickerExtension = {", + " Sticker", + "}" + ], + "parameterObjects": "", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [], + "objectGroups": [] + }, + { + "description": "Check if the object is stuck to another object.", + "fullName": "Is stuck to another object", + "functionType": "Condition", + "name": "IsStuck", + "sentence": "_PARAM1_ is stuck to _PARAM3_", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const stickerBehaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "/** @type {Hashtable} */", + "const stickerObjectsLists = eventsFunctionContext.getObjectsLists(\"Object\");", + "/** @type {Hashtable} */", + "const basisObjectsLists = eventsFunctionContext.getObjectsLists(\"BasisObject\");", + "", + "eventsFunctionContext.returnValue = gdjs.evtTools.object.twoListsTest(", + " (stickerObject, basisObject) => {", + " const sticker = stickerObject.getBehavior(stickerBehaviorName)._sticker;", + " return sticker.isStuckTo(basisObject);", + " },", + " stickerObjectsLists,", + " basisObjectsLists,", + " false", + ");" + ], + "parameterObjects": "", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Sticker", + "name": "Object", + "type": "objectList" + }, + { + "description": "Sticker behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + }, + { + "description": "Basis", + "name": "BasisObject", + "type": "objectList" + } + ], + "objectGroups": [] + } + ], + "eventsBasedBehaviors": [ + { + "description": "Stick the object to another. Use the action to stick the object, or unstick it later.", + "fullName": "Sticker", + "name": "Sticker", + "objectType": "", + "eventsFunctions": [ + { + "fullName": "", + "functionType": "Action", + "name": "onCreated", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "Sticker::DefineHelperClasses" + }, + "parameters": [ + "", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const Sticker = gdjs._stickerExtension.Sticker;", + "", + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const object = objects[0];", + "const behavior = object.getBehavior(behaviorName);", + "", + "behavior._sticker = new Sticker(behavior);", + "", + "// Set up the scene sticker objects list - if not done already.", + "runtimeScene._stickerExtension = runtimeScene._stickerExtension || {", + " allStickers: new Set(),", + "};", + "// Register this object as a sticker.", + "runtimeScene._stickerExtension.allStickers.add(behavior);", + "" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + } + ], + "objectGroups": [] + }, + { + "fullName": "", + "functionType": "Action", + "name": "doStepPreEvents", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const object = objects[0];", + "const behavior = object.getBehavior(behaviorName);", + "", + "behavior._sticker.onStepPreEvents();" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": false + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + } + ], + "objectGroups": [] + }, + { + "fullName": "", + "functionType": "Action", + "name": "doStepPostEvents", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const object = objects[0];", + "const behavior = object.getBehavior(behaviorName);", + "", + "behavior._sticker.followBasisObject();" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + } + ], + "objectGroups": [] + }, + { + "description": "Stick on another object.", + "fullName": "Stick", + "functionType": "Action", + "name": "Stick", + "sentence": "Stick _PARAM0_ to _PARAM2_", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const object = objects[0];", + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const basisObjects = eventsFunctionContext.getObjects(\"BasisObject\");", + "", + "if (basisObjects.length === 0) return;", + "// An object can stick to only one object.", + "const basisObject = basisObjects[0];", + "object.getBehavior(behaviorName)._sticker.stickTo(basisObject);", + "" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + }, + { + "description": "Object to stick to", + "name": "BasisObject", + "type": "objectList" + } + ], + "objectGroups": [] + }, + { + "description": "Unstick from the object it was stuck to.", + "fullName": "Unstick", + "functionType": "Action", + "name": "Unstick", + "sentence": "Unstick _PARAM0_", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const object = objects[0];", + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const behavior = object.getBehavior(behaviorName);", + "", + "object.getBehavior(behaviorName)._sticker.unstick();", + "" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + } + ], + "objectGroups": [] + }, + { + "fullName": "", + "functionType": "Action", + "name": "onDestroy", + "sentence": "", + "events": [ + { + "type": "BuiltinCommonInstructions::JsCode", + "inlineCode": [ + "const behaviorName = eventsFunctionContext.getBehaviorName(\"Behavior\");", + "const object = objects[0];", + "const behavior = object.getBehavior(behaviorName);", + "", + "runtimeScene._stickerExtension.allStickers.delete(behavior._sticker);", + "" + ], + "parameterObjects": "Object", + "useStrict": true, + "eventsSheetExpanded": true + } + ], + "parameters": [ + { + "description": "Object", + "name": "Object", + "type": "object" + }, + { + "description": "Behavior", + "name": "Behavior", + "supplementaryInformation": "Sticker::Sticker", + "type": "behavior" + } + ], + "objectGroups": [] + } + ], + "propertyDescriptors": [ + { + "value": "", + "type": "Boolean", + "label": "Only follow the position", + "description": "", + "group": "", + "extraInformation": [], + "name": "OnlyFollowPosition" + }, + { + "value": "", + "type": "Boolean", + "label": "Destroy when the object it's stuck on is destroyed", + "description": "", + "group": "", + "extraInformation": [], + "name": "IsDestroyedWithParent" + } + ], + "sharedPropertyDescriptors": [] + } + ], + "eventsBasedObjects": [] +} \ No newline at end of file diff --git a/src/externalEvents/appconnection.json b/src/externalEvents/appconnection.json index f70be497a..7a0e7c3c9 100644 --- a/src/externalEvents/appconnection.json +++ b/src/externalEvents/appconnection.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "AppConnection", "events": [ diff --git a/src/externalEvents/crossair.json b/src/externalEvents/crossair.json index cca72ec61..44530b9c1 100644 --- a/src/externalEvents/crossair.json +++ b/src/externalEvents/crossair.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Crossair", "events": [ @@ -47,7 +47,7 @@ "value": "Animation" }, "parameters": [ - "Niko", + "Player", "!=", "4" ] @@ -96,7 +96,7 @@ "value": "Animation" }, "parameters": [ - "Niko", + "Player", "=", "4" ] @@ -109,7 +109,7 @@ }, "parameters": [ "crossair", - "Niko.Direction()+90", + "Player.Direction() + 90", "0", "" ] diff --git a/src/externalEvents/doors.json b/src/externalEvents/doors.json index 3b01ddcd5..d44a503bc 100644 --- a/src/externalEvents/doors.json +++ b/src/externalEvents/doors.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Doors", "events": [ diff --git a/src/externalEvents/game.json b/src/externalEvents/game.json index 13729ad4c..4c2b1b76b 100644 --- a/src/externalEvents/game.json +++ b/src/externalEvents/game.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Game", "events": [ @@ -22,7 +22,7 @@ "include": { "includeConfig": 0 }, - "target": "Niko" + "target": "Player" }, { "type": "BuiltinCommonInstructions::Link", @@ -50,7 +50,6 @@ "colorG": 176, "colorR": 74, "creationTime": 0, - "folded": true, "name": "Global misc events", "source": "", "type": "BuiltinCommonInstructions::Group", @@ -196,22 +195,6 @@ } ] }, - { - "type": "BuiltinCommonInstructions::Standard", - "conditions": [], - "actions": [ - { - "type": { - "value": "TiledSpriteObject::XOffset" - }, - "parameters": [ - "Water", - "+", - "1" - ] - } - ] - }, { "type": "BuiltinCommonInstructions::Standard", "conditions": [ diff --git a/src/externalEvents/godmode.json b/src/externalEvents/godmode.json index c4fbb4173..c5966b3fb 100644 --- a/src/externalEvents/godmode.json +++ b/src/externalEvents/godmode.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Godmode", "events": [ diff --git a/src/externalEvents/niko.json b/src/externalEvents/niko.json index d3b69b94b..4318c4963 100644 --- a/src/externalEvents/niko.json +++ b/src/externalEvents/niko.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Niko", "events": [ @@ -161,15 +161,46 @@ "conditions": [ { "type": { - "inverted": true, - "value": "CollisionNP" + "value": "BuiltinCommonInstructions::Or" }, - "parameters": [ - "Placeholder", - "Water", - "", - "", - "" + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "grass_tiled", + "", + "", + "" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "road", + "", + "", + "" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "sand", + "", + "", + "" + ] + } ] } ], @@ -225,6 +256,45 @@ "", "" ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "road", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "sand", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "grass_tiled", + "", + "", + "" + ] } ], "actions": [], @@ -304,7 +374,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "10" ] @@ -342,7 +412,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "9" ] @@ -445,7 +515,7 @@ "value": "Animation" }, "parameters": [ - "Niko", + "Player", "!=", "10" ] @@ -455,7 +525,7 @@ "value": "Animation" }, "parameters": [ - "Niko", + "Player", "!=", "9" ] @@ -679,7 +749,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "1" ] @@ -689,7 +759,7 @@ "value": "PlayAnimation" }, "parameters": [ - "Niko" + "Player" ] } ] @@ -744,7 +814,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "0" ] @@ -754,7 +824,7 @@ "value": "PlayAnimation" }, "parameters": [ - "Niko" + "Player" ] } ] @@ -856,7 +926,7 @@ "value": "MettreXY" }, "parameters": [ - "Niko", + "Player", "=", "Placeholder.X()", "=", @@ -868,7 +938,7 @@ "value": "SetAngle" }, "parameters": [ - "Niko", + "Player", "=", "Placeholder.Angle()" ] @@ -880,7 +950,7 @@ "parameters": [ "flame_thrower_fire", "=", - "Niko.ZOrder()" + "Player.ZOrder()" ] } ] @@ -1071,7 +1141,7 @@ "parameters": [ "", "\"\"", - "\"Effect\"", + "\"LightNight\"", "\"opacity\"", "Variable(Died_effects_tween)" ] @@ -1570,9 +1640,9 @@ "parameters": [ "flame_thrower_fire_collision", "=", - "Niko.PointX(\"f_t_collision\")", + "Player.PointX(\"f_t_collision\")", "=", - "Niko.PointY(\"f_t_collision\")" + "Player.PointY(\"f_t_collision\")" ] }, { @@ -2402,7 +2472,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "0" ] @@ -2530,7 +2600,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "2" ] @@ -2628,8 +2698,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -2704,8 +2774,8 @@ "parameters": [ "", "shooting_effect", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -2762,8 +2832,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")" + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" ] }, { @@ -2781,8 +2851,8 @@ "parameters": [ "", "gun1", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -2919,7 +2989,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "3" ] @@ -3021,8 +3091,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -3094,8 +3164,8 @@ "parameters": [ "", "shooting_effect", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -3152,8 +3222,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")" + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" ] }, { @@ -3171,8 +3241,8 @@ "parameters": [ "", "gun2", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -3285,7 +3355,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "4" ] @@ -3481,7 +3551,7 @@ "value": "Distance" }, "parameters": [ - "Niko", + "Player", "bullet_obstacles", "78", "" @@ -3619,8 +3689,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")" + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" ] }, { @@ -3638,8 +3708,8 @@ "parameters": [ "", "gun3", - "Niko.PointX(\"f_t_collision\")", - "Niko.PointY(\"f_t_collision\")", + "Player.PointX(\"f_t_collision\")", + "Player.PointY(\"f_t_collision\")", "\"\"" ] }, @@ -3800,7 +3870,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "5" ] @@ -3925,8 +3995,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -3998,8 +4068,8 @@ "parameters": [ "", "shooting_effect_sniper", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4047,8 +4117,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4130,8 +4200,8 @@ "parameters": [ "", "shooting_effect_sniper", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4190,8 +4260,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")" + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" ] }, { @@ -4209,8 +4279,8 @@ "parameters": [ "", "gun4", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4467,7 +4537,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "6" ] @@ -4579,8 +4649,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4652,8 +4722,8 @@ "parameters": [ "", "shooting_effect_rocket", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4701,8 +4771,8 @@ "parameters": [ "", "bullet", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4784,8 +4854,8 @@ "parameters": [ "", "shooting_effect_rocket", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -4844,8 +4914,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")" + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" ] }, { @@ -4896,8 +4966,8 @@ "parameters": [ "", "gun5", - "Niko.PointX(\"shoot\")", - "Niko.PointY(\"shoot\")", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", "\"\"" ] }, @@ -5009,7 +5079,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "11" ] @@ -5078,7 +5148,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "6" ] @@ -5113,7 +5183,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "11" ] @@ -5214,7 +5284,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "7" ] @@ -5309,9 +5379,9 @@ "parameters": [ "tazer_hitbox", "=", - "Niko.PointX(\"hitbox\")", + "Player.PointX(\"hitbox\")", "=", - "Niko.PointY(\"hitbox\")" + "Player.PointY(\"hitbox\")" ] }, { @@ -5344,8 +5414,8 @@ "parameters": [ "", "tazer_hitbox", - "Niko.PointX(\"hitbox\")", - "Niko.PointY(\"hitbox\")", + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")", "\"\"" ] }, @@ -5474,8 +5544,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"hitbox\")", - "Niko.PointY(\"hitbox\")" + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")" ] }, { @@ -5493,8 +5563,8 @@ "parameters": [ "", "mele1", - "Niko.PointX(\"hitbox\")", - "Niko.PointY(\"hitbox\")", + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")", "\"\"" ] }, @@ -5599,9 +5669,9 @@ "parameters": [ "Slash1", "=", - "Niko.PointX(\"slash\")", + "Player.PointX(\"slash\")", "=", - "Niko.PointY(\"slash\")" + "Player.PointY(\"slash\")" ] } ] @@ -5644,7 +5714,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "12" ] @@ -5727,8 +5797,8 @@ "parameters": [ "", "Slash1", - "Niko.PointX(\"slash\")", - "Niko.PointY(\"slash\")", + "Player.PointX(\"slash\")", + "Player.PointY(\"slash\")", "\"\"" ] }, @@ -5822,9 +5892,9 @@ "parameters": [ "Slash1", "=", - "Niko.PointX(\"slash\")", + "Player.PointX(\"slash\")", "=", - "Niko.PointY(\"slash\")" + "Player.PointY(\"slash\")" ] } ], @@ -5847,8 +5917,8 @@ "parameters": [ "", "Slash1", - "Niko.PointX(\"slash\")", - "Niko.PointY(\"slash\")", + "Player.PointX(\"slash\")", + "Player.PointY(\"slash\")", "\"\"" ] }, @@ -5941,8 +6011,8 @@ }, "parameters": [ "bullet_obstacles", - "Niko.PointX(\"Center\")", - "Niko.PointY(\"Center\")" + "Player.PointX(\"Center\")", + "Player.PointY(\"Center\")" ] }, { @@ -5960,8 +6030,8 @@ "parameters": [ "", "mele2", - "Niko.PointX(\"Center\")", - "Niko.PointY(\"Center\")", + "Player.PointX(\"Center\")", + "Player.PointY(\"Center\")", "\"\"" ] }, diff --git a/src/externalEvents/phone.json b/src/externalEvents/phone.json index 438cd5375..f61c1859d 100644 --- a/src/externalEvents/phone.json +++ b/src/externalEvents/phone.json @@ -1,5 +1,5 @@ { - "associatedLayout": "City1", + "associatedLayout": "City", "lastChangeTimeStamp": 0, "name": "Phone", "events": [ @@ -21,7 +21,7 @@ }, "parameters": [ "", - "PageUp" + "Up" ] }, { @@ -147,57 +147,57 @@ "actions": [ { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "Phone", "Tween", "\"phone\"", "360", - "\"easeInSine\"", - "2200", + "\"easeInQuad\"", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_wifi", "Tween", "\"phone\"", "405", - "\"easeInSine\"", - "2200", + "\"easeInQuad\"", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_battery", "Tween", "\"phone\"", "394", - "\"easeInSine\"", - "2200", + "\"easeInQuad\"", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_time", "Tween", "\"phone\"", "391.5", - "\"easeInSine\"", - "2200", + "\"easeInQuad\"", + "0.5", "" ] } @@ -365,7 +365,7 @@ }, "parameters": [ "", - "PageDown" + "Down" ] }, { @@ -436,7 +436,7 @@ "actions": [ { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_wifi", @@ -444,13 +444,13 @@ "\"phone\"", "949", "\"easeOutSine\"", - "2200", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_time", @@ -458,27 +458,27 @@ "\"phone\"", "936", "\"easeOutSine\"", - "2200", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "phone_battery", "Tween", "\"phone\"", "936", - "\"easeOutSine\"", - "2200", + "\"linear\"", + "0.5", "" ] }, { "type": { - "value": "Tween::AddObjectPositionYTween" + "value": "Tween::TweenBehavior::AddObjectPositionYTween2" }, "parameters": [ "Phone", @@ -486,7 +486,7 @@ "\"phone\"", "907", "\"easeOutSine\"", - "2200", + "0.5", "" ] }, @@ -1970,7 +1970,7 @@ "value": "ChangeAnimation" }, "parameters": [ - "Niko", + "Player", "=", "8" ] @@ -1980,7 +1980,7 @@ "value": "ChangeAnimationSpeedScale" }, "parameters": [ - "Niko", + "Player", "=", "0.1" ] @@ -2006,7 +2006,7 @@ "value": "PlayAnimation" }, "parameters": [ - "Niko" + "Player" ] } ] @@ -2031,7 +2031,7 @@ "value": "PauseAnimation" }, "parameters": [ - "Niko" + "Player" ] }, { @@ -2039,7 +2039,7 @@ "value": "ChangeSprite" }, "parameters": [ - "Niko", + "Player", "=", "0" ] @@ -2068,7 +2068,7 @@ "value": "ChangeAnimationSpeedScale" }, "parameters": [ - "Niko", + "Player", "=", "0.7" ] diff --git a/src/externalEvents/player.json b/src/externalEvents/player.json new file mode 100644 index 000000000..e2a62abd8 --- /dev/null +++ b/src/externalEvents/player.json @@ -0,0 +1,8742 @@ +{ + "associatedLayout": "City", + "lastChangeTimeStamp": 0, + "name": "Player", + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Variables Documentation", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Explain what the variable does here:\n\n\n\n" + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Hide", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "hidden_separate" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Separate", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "road_block", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "Fences", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "foliage", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "sports_equipments", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "trash_movable", + "Placeholder", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "trash_movable", + "Fences", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "trash_movable", + "foliage", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "trash_movable", + "road_block", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "hidden_separate", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "roof_tops", + "" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Swimming", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "grass_tiled", + "", + "", + "" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "road", + "", + "", + "" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "sand", + "", + "", + "" + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "swimming", + "=", + "0" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Old_weapon_holding)" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "Water", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "road", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "sand", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "grass_tiled", + "", + "", + "" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "swimming", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "swimming", + "=", + "2" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "10" + ] + }, + { + "type": { + "value": "TopDownMovementBehavior::MaxSpeed" + }, + "parameters": [ + "Placeholder", + "TopDownMovement", + "=", + "50" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "2" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "9" + ] + }, + { + "type": { + "value": "TopDownMovementBehavior::MaxSpeed" + }, + "parameters": [ + "Placeholder", + "TopDownMovement", + "=", + "50" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "1" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "2" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Old_weapon_holding", + "=", + "GlobalVariable(Weapon_holding)" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "Animation" + }, + "parameters": [ + "Player", + "!=", + "10" + ] + }, + { + "type": { + "value": "Animation" + }, + "parameters": [ + "Player", + "!=", + "9" + ] + } + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::MaxSpeed" + }, + "parameters": [ + "Placeholder", + "TopDownMovement", + "=", + "200" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Controls", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "VarScene" + }, + "parameters": [ + "niko_movement", + "=", + "0" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "a" + ] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::SimulateLeftKey" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "d" + ] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::SimulateRightKey" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "w" + ] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::SimulateUpKey" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "s" + ] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::SimulateDownKey" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + } + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Animation", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "phone", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "1" + ] + }, + { + "type": { + "value": "PlayAnimation" + }, + "parameters": [ + "Player" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "phone", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "swimming", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "0" + ] + }, + { + "type": { + "value": "PlayAnimation" + }, + "parameters": [ + "Player" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Collisions", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "kitchen", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "furniture", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "walls", + "" + ] + }, + { + "type": { + "value": "SeparateFromObjects" + }, + "parameters": [ + "Placeholder", + "flower", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Placeholders", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "Placeholder" + ] + }, + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "Player", + "=", + "Placeholder.X()", + "=", + "Placeholder.Y()" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "Player", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "flame_thrower_fire", + "=", + "Player.ZOrder()" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Leaves", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "foliage", + "", + "", + "" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "foliage", + "", + "", + "" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Animation" + }, + "parameters": [ + "foliage", + "!=", + "3" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "green_leaves_particle", + "foliage.X()", + "foliage.Y()", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Animation" + }, + "parameters": [ + "foliage", + "=", + "3" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "brown_leaves_particle", + "foliage.X()", + "foliage.Y()", + "" + ] + } + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Death screen", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "Health", + "=", + "\"0\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "You_lose", + "" + ] + }, + { + "type": { + "value": "EnableLayerEffect" + }, + "parameters": [ + "", + "\"\"", + "\"BlackAndWhite\"", + "yes" + ] + }, + { + "type": { + "value": "EnableLayerEffect" + }, + "parameters": [ + "", + "\"\"", + "\"ZoomBlur\"", + "yes" + ] + }, + { + "type": { + "value": "SetLayerEffectParameter" + }, + "parameters": [ + "", + "\"\"", + "\"LightNight\"", + "\"opacity\"", + "Variable(Died_effects_tween)" + ] + }, + { + "type": { + "value": "Tween::AddObjectOpacityTween" + }, + "parameters": [ + "You_lose", + "Tween", + "\"Effect\"", + "255", + "\"easeInCubic\"", + "3000", + "" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "Died_effects_tween", + "<", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "Died_effects_tween", + "+", + "0.1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "Died_effects_tween", + "<", + "0.5" + ] + } + ], + "actions": [ + { + "type": { + "value": "SetLayerEffectParameter" + }, + "parameters": [ + "", + "\"\"", + "\"Effect2\"", + "\"strength\"", + "Variable(Died_effects_tween)" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "You_lose" + ] + }, + { + "type": { + "value": "EnableLayerEffect" + }, + "parameters": [ + "", + "\"\"", + "\"BlackAndWhite\"", + "" + ] + }, + { + "type": { + "value": "EnableLayerEffect" + }, + "parameters": [ + "", + "\"\"", + "\"ZoomBlur\"", + "" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Camera", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "CentreCamera" + }, + "parameters": [ + "", + "Placeholder", + "", + "\"\"", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "Camera_zoom", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "godmod", + "!=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ZoomCamera" + }, + "parameters": [ + "", + "Variable(Camera_zoom)", + "", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "godmod", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ZoomCamera" + }, + "parameters": [ + "", + "0.5", + "", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun_holding", + "!=", + "4" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "Camera_zoom", + ">", + "0.9" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "Camera_zoom", + "-", + "0.0005" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "TopDownMovementBehavior::IsMoving" + }, + "parameters": [ + "Placeholder", + "TopDownMovement" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "!=", + "4" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "Camera_zoom", + "<", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "Camera_zoom", + "+", + "0.0005" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "Camera_zoom", + ">", + "0.8" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "Camera_zoom", + "-", + "0.005" + ] + } + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Weapon system", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + }, + { + "type": { + "value": "AjoutObjConcern" + }, + "parameters": [ + "", + "reloading" + ] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "flame_thrower_fire_collision" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "flame_thrower_fire" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "flame_thrower_fire_collision", + "\"gun3_ammo\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"False\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"False\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "mele2_use", + "=", + "\"False\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "flame_thrower_fire_collision", + "=", + "Player.PointX(\"f_t_collision\")", + "=", + "Player.PointY(\"f_t_collision\")" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "flame_thrower_fire_collision", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "flame_thrower_fire", + "=", + "Placeholder.Angle()" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "If `Rotate_mouse` do ...." + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "0" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Top down veiw movment rotate = False" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::RotateObject" + }, + "parameters": [ + "Placeholder", + "TopDownMovement", + "yes" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "RotateTowardPosition" + }, + "parameters": [ + "Placeholder", + "MouseX(\"\", 0)", + "MouseY(\"\", 0)", + "0", + "" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Top down veiw movment rotate = False" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "TopDownMovementBehavior::RotateObject" + }, + "parameters": [ + "Placeholder", + "TopDownMovement", + "no" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Pick up the gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "gun1", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "gun1", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "gun2", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "gun2", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "gun3", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "gun3", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "3" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "gun4", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "gun4", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "gun5", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "gun5", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "5" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "mele1", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "mele1", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "6" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "mele1", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "mele1", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "6" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "mele2", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "mele2", + "" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "7" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "If holding an gun(0 is not holding) do ...." + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "weapon_icons", + "=", + "0" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "weaponholding" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "0" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "0" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "AmmoText" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "0" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "Slash1", + "" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "tazer_hitbox", + "" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: gun1\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "2" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "4" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Shoot gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun1_ammo", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "PlaySound" + }, + "parameters": [ + "", + "assets\\gun_shot_1.wav", + "", + "", + "" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun1_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "1" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect", + "=", + "70000" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "gun1", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "gun1", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "gun1", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "2" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: gun2\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun2_shoot\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "3" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Shoot gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun2_ammo", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "0.1", + "\"gun2_shoot\"" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun2_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun2_shoot\"" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "2" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect", + "=", + "70000" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "gun2", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "gun2", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "gun2", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "3" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: gun3\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "4" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "3" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Shoot gun" + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun3_ammo", + "!=", + "0" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "flame_thrower_fire", + "" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ParticleSystem::RecreateParticleSystem" + }, + "parameters": [ + "flame_thrower_fire" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "flame_thrower_fire_collision", + "\"gun3_ammo\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "2", + "\"gun3_ammo\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun3_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "flame_thrower_fire_collision", + "\"gun3_ammo\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "If fire in collision with burnable object, set it on fire" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + }, + { + "type": { + "inverted": true, + "value": "Distance" + }, + "parameters": [ + "Player", + "bullet_obstacles", + "78", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "CreateByName" + }, + "parameters": [ + "", + "flame_thrower_fire_secondary", + "\"flame_thrower_fire_secondary\"", + "flame_thrower_fire_collision.PointX(\"CenterBurning\")", + "flame_thrower_fire_collision.PointY(\"CenterBurning\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "flame_thrower_fire_secondary", + "=", + "222" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "flame_thrower_fire_secondary", + "=", + "Placeholder.Angle()" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "inverted": true, + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun3_ammo", + "=", + "0" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "flame_thrower_fire" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "gun3", + "Player.PointX(\"f_t_collision\")", + "Player.PointY(\"f_t_collision\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "gun3", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "gun3", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "flame_thrower_fire" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Put actual fire over hitbox" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "flame_thrower_fire", + "=", + "flame_thrower_fire_collision.X()", + "=", + "flame_thrower_fire_collision.Y()" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "weapon_icons", + "=", + "2" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: gun4\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "5" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Shoot gun" + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun4_ammo", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun4_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"True\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun4_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "4" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun4_shoot\"" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect_sniper", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect_sniper", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect_sniper", + "=", + "70000" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"False\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun4_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "4" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun4_shoot\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect_sniper", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect_sniper", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect_sniper", + "=", + "70000" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "gun4", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "gun4", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "gun4", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "reloading" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun4_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "reloading", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun4_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun4_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun4_ammo", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "5" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "weapon_icons", + "=", + "3" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: gun5\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "6" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Shoot gun" + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"True\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "5" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect_rocket", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect_rocket", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect_rocket", + "=", + "70000" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"False\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "bullet", + "Placeholder.Angle()", + "800", + "1" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "-", + "1" + ] + }, + { + "type": { + "value": "ModVarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "5" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "shooting_effect_rocket", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "shooting_effect_rocket", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "shooting_effect_rocket", + "=", + "70000" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + }, + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionNP" + }, + "parameters": [ + "flame_thrower_fire_collision", + "bullet_obstacles", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "gun5", + "Player.PointX(\"shoot\")", + "Player.PointY(\"shoot\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "gun5", + "=", + "0" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "gun5", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "gun5", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "reloading" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "reloading", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "11" + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "5", + "\"gun5_shoot\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "gun5_shoot", + "=", + "\"True\"" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "!=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "6" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "=", + "0" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "11" + ] + }, + { + "type": { + "value": "Cache" + }, + "parameters": [ + "reloading" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "6" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "weapon_icons", + "=", + "1" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: mele1\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "7" + ] + }, + { + "type": { + "value": "Montre" + }, + "parameters": [ + "AmmoText", + "" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "use mele " + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "mele1_energy", + "!=", + "0" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "tazer_hitbox", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "tazer_hitbox", + "=", + "Player.PointX(\"hitbox\")", + "=", + "Player.PointY(\"hitbox\")" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "mele1_use", + "=", + "\"True\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "tazer_hitbox", + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")", + "\"\"" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"mele1_energy\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "2", + "\"mele1_energy\"" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "mele1_energy", + "-", + "1" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"mele1_energy\"" + ] + } + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "MouseButtonReleased" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "mele1_energy", + "=", + "0" + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "tazer_hitbox", + "tazer_hitbox" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "mele1", + "Player.PointX(\"hitbox\")", + "Player.PointY(\"hitbox\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "mele1", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "mele1", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "7" + ] + } + ], + "actions": [ + { + "type": { + "value": "Montre" + }, + "parameters": [ + "weaponholding", + "" + ] + }, + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "weaponholding", + "=", + "\"weapon: mele2\"" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "AjoutObjConcern" + }, + "parameters": [ + "", + "Slash1" + ] + } + ], + "actions": [ + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "Slash1", + "=", + "Placeholder.Angle() + 100" + ] + }, + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "Slash1", + "=", + "Player.PointX(\"slash\")", + "=", + "Player.PointY(\"slash\")" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Change animation and `Rotate_mouse` " + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Rotate_mouse", + "=", + "1" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "Player", + "=", + "12" + ] + }, + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "crossair", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "use mele " + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "mele2_use", + "=", + "\"False\"" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "Slash1", + "Player.PointX(\"slash\")", + "Player.PointY(\"slash\")", + "\"\"" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"mele2_use\"" + ] + }, + { + "type": { + "value": "ModVarSceneTxt" + }, + "parameters": [ + "mele2_use", + "=", + "\"True\"" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "SourisBouton" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + }, + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "2", + "\"mele2_use\"" + ] + }, + { + "type": { + "value": "VarSceneTxt" + }, + "parameters": [ + "mele2_use", + "=", + "\"True\"" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "Slash1", + "=", + "Placeholder.Angle() + 100" + ] + }, + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "Slash1", + "=", + "Player.PointX(\"slash\")", + "=", + "Player.PointY(\"slash\")" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "Slash1", + "Player.PointX(\"slash\")", + "Player.PointY(\"slash\")", + "\"\"" + ] + }, + { + "type": { + "value": "ResetTimer" + }, + "parameters": [ + "", + "\"mele2_use\"" + ] + } + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "MouseButtonReleased" + }, + "parameters": [ + "", + "Left" + ] + }, + { + "type": { + "value": "Timer" + }, + "parameters": [ + "", + "0.50", + "\"mele2_use\"" + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "Slash1", + "tazer_hitbox" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Drop gun" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyReleased" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "inverted": true, + "value": "CollisionPoint" + }, + "parameters": [ + "bullet_obstacles", + "Player.PointX(\"Center\")", + "Player.PointY(\"Center\")" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "mele2", + "Player.PointX(\"Center\")", + "Player.PointY(\"Center\")", + "\"\"" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "mele2", + "=", + "70000" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "mele2", + "=", + "Placeholder.Angle()" + ] + }, + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "Slash1", + "tazer_hitbox" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "if bullets collide with \"bullet obstacles\"" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "bullet_obstacles", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet_destroy_pistol", + "bullet.PointX(\"effects_bullet\")", + "bullet.PointY(\"effects_bullet\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet_destroy_pistol", + "=", + "(bullet.Angle())-180" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet_destroy_pistol", + "=", + "2000" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "bullet_obstacles", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "2" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet_destroy_machine", + "bullet.PointX(\"effects_bullet\")", + "bullet.PointY(\"effects_bullet\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet_destroy_machine", + "=", + "(bullet.Angle())-180" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet_destroy_machine", + "=", + "2000" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "bullet_obstacles", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet_destroy_sniper", + "bullet.PointX(\"effects_bullet\")", + "bullet.PointY(\"effects_bullet\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet_destroy_sniper", + "=", + "(bullet.Angle())-180" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet_destroy_sniper", + "=", + "2000" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "bullet_obstacles", + "", + "", + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "5" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "bullet_destroy_rocket", + "bullet.PointX(\"effects_bullet\")", + "bullet.PointY(\"effects_bullet\")", + "\"\"" + ] + }, + { + "type": { + "value": "SetAngle" + }, + "parameters": [ + "bullet_destroy_rocket", + "=", + "(bullet.Angle())-180" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet_destroy_rocket", + "=", + "2000" + ] + }, + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + }, + { + "type": { + "value": "CameraShake::CameraShake" + }, + "parameters": [ + "", + "5", + "5", + "\"\"", + "0", + "0.25", + "2", + "3", + "0", + "no", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Distance" + }, + "parameters": [ + "bullet", + "Fences", + "15", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Arreter" + }, + "parameters": [ + "bullet" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Arret" + }, + "parameters": [ + "bullet" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "bullet", + "Fences", + "", + "", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "bullet", + "=", + "-200" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Ammo" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "e" + ] + }, + { + "type": { + "value": "Animation" + }, + "parameters": [ + "ammo", + "=", + "0" + ] + }, + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "ammo", + "", + "", + "" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "ammo", + "" + ] + } + ], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun1_ammo", + "+", + "10" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "2" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun2_ammo", + "+", + "10" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "3" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun3_ammo", + "+", + "10" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun4_ammo", + "+", + "10" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "5" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Gun5_ammo", + "+", + "10000" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "6" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "mele1_energy", + "+", + "10" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Ammo: \" + GlobalVariableString(Gun1_ammo)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "2" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Ammo: \" + GlobalVariableString(Gun2_ammo)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "3" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Gas: \" + GlobalVariableString(Gun3_ammo)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "4" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Ammo: \" + GlobalVariableString(Gun4_ammo)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "5" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Ammo: \" + GlobalVariableString(Gun5_ammo)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "6" + ] + } + ], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "AmmoText", + "=", + "\"Energy: \" + GlobalVariableString(mele1_energy)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "bullet" + }, + { + "type": "BuiltinCommonInstructions::ForEach", + "object": "bullet", + "conditions": [], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ResetObjectTimer" + }, + "parameters": [ + "bullet", + "\"delete1\"" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "4" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "bullet", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "5" + ] + } + ], + "actions": [ + { + "type": { + "value": "ChangeAnimation" + }, + "parameters": [ + "bullet", + "=", + "2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "1" + ] + }, + { + "type": { + "value": "ObjectTimer" + }, + "parameters": [ + "bullet", + "\"delete1\"", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "2" + ] + }, + { + "type": { + "value": "ObjectTimer" + }, + "parameters": [ + "bullet", + "\"delete1\"", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "4" + ] + }, + { + "type": { + "value": "ObjectTimer" + }, + "parameters": [ + "bullet", + "\"delete1\"", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarObjet" + }, + "parameters": [ + "bullet", + "bullet", + "=", + "5" + ] + }, + { + "type": { + "value": "ObjectTimer" + }, + "parameters": [ + "bullet", + "\"delete1\"", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "bullet", + "" + ] + } + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Weapon system wheel", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "TextObject::String" + }, + "parameters": [ + "Wheel_info", + "=", + "\"Wheel using: \" + GlobalVariableString(Wheel_stuff.wheel)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "IsMouseWheelScrollingUp" + }, + "parameters": [ + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "!=", + "5" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "+", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "IsMouseWheelScrollingDown" + }, + "parameters": [ + "" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "!=", + "1" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "-", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "1" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "2" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "v" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "b" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Wheel_stuff.wheel1)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "h" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "2" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "1" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel1", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "3" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "v" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "b" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Wheel_stuff.wheel2)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "GlobalVariable(Weapon_holding)" + ] + }, + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "q" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "h" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "3" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "2" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel2", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "4" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "3" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "v" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "b" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Wheel_stuff.wheel3)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "h" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "4" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "3" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel3", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::And" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "5" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "5" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "v" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "b" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Wheel_stuff.wheel4)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "h" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "folded": true, + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "5" + ] + } + ], + "actions": [], + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "4" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel4", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.old wheel", + "=", + "5" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "v" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "b" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "!=", + "0" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + }, + { + "type": { + "value": "VarScene" + }, + "parameters": [ + "using_phone", + "=", + "0" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "GlobalVariable(Wheel_stuff.wheel5)" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "q" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "0" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "h" + ] + }, + { + "type": { + "value": "VarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel5", + "=", + "GlobalVariable(Weapon_holding)" + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Weapon_holding", + "=", + "0" + ] + } + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "Num1" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "Num2" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "Num3" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "3" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "Num4" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "4" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "KeyPressed" + }, + "parameters": [ + "", + "Num5" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "ModVarGlobal" + }, + "parameters": [ + "Wheel_stuff.wheel", + "=", + "5" + ] + } + ] + } + ], + "parameters": [] + } + ] +} \ No newline at end of file diff --git a/src/externalEvents/sea.json b/src/externalEvents/sea.json new file mode 100644 index 000000000..39973d02a --- /dev/null +++ b/src/externalEvents/sea.json @@ -0,0 +1,183 @@ +{ + "associatedLayout": "City", + "lastChangeTimeStamp": 0, + "name": "Sea", + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Water", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "inverted": true, + "value": "IsOnScreen::InOnScreen::IsOnScreen" + }, + "parameters": [ + "Water_cover", + "InOnScreen", + "0", + "" + ] + } + ], + "actions": [ + { + "type": { + "value": "Delete" + }, + "parameters": [ + "Water", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "IsOnScreen::InOnScreen::IsOnScreen" + }, + "parameters": [ + "Water_cover", + "InOnScreen", + "0", + "" + ] + }, + { + "type": { + "value": "SceneInstancesCount" + }, + "parameters": [ + "Water", + "Water", + "<", + "1" + ] + } + ], + "actions": [ + { + "type": { + "value": "Create" + }, + "parameters": [ + "", + "Water", + "Player.CenterX() - Water.Width() / 2", + "Player.CenterY() - Water.Height() / 2", + "" + ] + }, + { + "type": { + "value": "ResizableCapability::ResizableBehavior::SetHeight" + }, + "parameters": [ + "Water", + "Resizable", + "=", + "SceneWindowHeight() + 500" + ] + }, + { + "type": { + "value": "ResizableCapability::ResizableBehavior::SetWidth" + }, + "parameters": [ + "Water", + "Resizable", + "=", + "SceneWindowWidth() + 500" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "MettreXY" + }, + "parameters": [ + "Water", + "=", + "Player.CenterX() - Water.Width() / 2", + "=", + "Player.CenterY() - Water.Height() / 2" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Sea offset" + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "TiledSpriteObject::XOffset" + }, + "parameters": [ + "Water", + "+", + "1" + ] + }, + { + "type": { + "value": "TiledSpriteObject::YOffset" + }, + "parameters": [ + "Water", + "+", + "-1" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "parameters": [] + } + ] +} \ No newline at end of file diff --git a/src/externalEvents/sports.json b/src/externalEvents/sports.json new file mode 100644 index 000000000..06bf98ec5 --- /dev/null +++ b/src/externalEvents/sports.json @@ -0,0 +1,126 @@ +{ + "associatedLayout": "City", + "lastChangeTimeStamp": 0, + "name": "Sports", + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Basket ball", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "Bounce::Bounce::BounceOff" + }, + "parameters": [ + "sports_equipments_movable", + "Bounce", + "Placeholder", + "" + ] + }, + { + "type": { + "value": "Bounce::Bounce::BounceOff" + }, + "parameters": [ + "sports_equipments_movable", + "Bounce", + "Fences", + "" + ] + }, + { + "type": { + "value": "Bounce::Bounce::BounceOff" + }, + "parameters": [ + "sports_equipments_movable", + "Bounce", + "roof_tops", + "" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "CollisionNP" + }, + "parameters": [ + "Placeholder", + "sports_equipments_movable", + "", + "", + "" + ] + }, + { + "type": { + "value": "BuiltinCommonInstructions::Once" + }, + "parameters": [] + } + ], + "actions": [ + { + "type": { + "value": "AddForceAL" + }, + "parameters": [ + "sports_equipments_movable", + "Placeholder.Angle()", + "120", + "1" + ] + }, + { + "type": { + "value": "PlayAnimation" + }, + "parameters": [ + "sports_equipments_movable" + ] + } + ] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "Arret" + }, + "parameters": [ + "sports_equipments_movable" + ] + } + ], + "actions": [ + { + "type": { + "value": "AnimatableCapability::AnimatableBehavior::PauseAnimation" + }, + "parameters": [ + "sports_equipments_movable", + "Animation" + ] + } + ] + } + ], + "parameters": [] + } + ] +} \ No newline at end of file diff --git a/src/externalLayouts/city2.json b/src/externalLayouts/city2.json new file mode 100644 index 000000000..89f9ef058 --- /dev/null +++ b/src/externalLayouts/city2.json @@ -0,0 +1,24314 @@ +{ + "associatedLayout": "City", + "name": "City2", + "instances": [ + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "5a2aa2fa-e358-41d1-9553-46f80d4d7d45", + "width": 0, + "x": 503, + "y": -66, + "zOrder": 12622, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 9380, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "03635f00-4fba-4dff-a12a-15d906fcf941", + "width": 10710, + "x": -2213, + "y": 74, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "918ec587-068c-42f6-957b-a5d3278a2815", + "width": 140, + "x": 867, + "y": 74, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "bdc749d6-8cdf-40aa-8d7b-d2d83b040e61", + "width": 140, + "x": 97, + "y": 74, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6c894b09-32ad-41b1-b989-c2b35dc5a647", + "width": 70, + "x": 797, + "y": 1194, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "2566f1ba-c27d-4804-8dfc-b3be79060ab8", + "width": 7420, + "x": 867, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "40e08d82-0aa6-4f5c-b140-ffb967fd54f8", + "width": 1820, + "x": -1583, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e681aad6-3d7c-4b1b-ae32-b4350d07f757", + "width": 70, + "x": 237, + "y": 1194, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "ff00d791-d32b-44b4-b642-b890bebfc1e0", + "width": 1890, + "x": -1583, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "81733bda-0dd8-4089-a5df-703319aa536e", + "width": 3920, + "x": 797, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3500, + "layer": "", + "name": "road", + "persistentUuid": "dcabcd45-c186-4d94-937a-295089c4ad1a", + "width": 140, + "x": -3683, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5600, + "layer": "", + "name": "road", + "persistentUuid": "92d1c496-a968-4be1-8b7a-70c4742ae27d", + "width": 140, + "x": 4507, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6090, + "layer": "", + "name": "road", + "persistentUuid": "be9510e2-8751-4d25-976e-d25ac2588d05", + "width": 140, + "x": 4717, + "y": 1264, + "zOrder": 10, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "28a9f6b7-33a6-43f1-9fa8-ee295ab85a39", + "width": 2940, + "x": 4857, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "a4d057d2-3a74-4ec3-aeb3-1e2dffee271b", + "width": 3850, + "x": -1513, + "y": 1754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "8cd3c684-9307-4ee4-8723-fca47c595dcd", + "width": 6090, + "x": -1583, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "531e0054-67ff-4953-950f-ba16be6ff5ba", + "width": 70, + "x": 4437, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "56fc776d-d671-4896-bc2e-59100dfa0b11", + "width": 2940, + "x": 4857, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2100, + "layer": "", + "name": "road_1", + "persistentUuid": "d7f8e0be-345b-4aa8-bfff-930dda6dc724", + "width": 70, + "x": 4857, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "b338a2b1-7e96-4439-9dd2-003501c7024b", + "width": 840, + "x": 4927, + "y": 1754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6160, + "layer": "", + "name": "road", + "persistentUuid": "760c426c-092f-417a-bc5e-94f1091ac0ea", + "width": 210, + "x": 8077, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 8610, + "layer": "", + "name": "road_1", + "persistentUuid": "bfdec218-4840-4be1-b3ed-7d493b84150b", + "width": 70, + "x": 8287, + "y": 1264, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5530, + "layer": "", + "name": "road_2", + "persistentUuid": "a95dee66-6aac-4add-8164-ac7feb5a04e6", + "width": 70, + "x": 8007, + "y": 1684, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5530, + "layer": "", + "name": "road_2", + "persistentUuid": "56271529-aa9f-46f6-90f5-f8a6a50343eb", + "width": 70, + "x": 4647, + "y": 1684, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "2701fcdd-156f-40cb-a369-8d88ea937b48", + "width": 1820, + "x": -1443, + "y": 1474, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "c95fa90b-62de-447a-aefe-4155cf7c0a43", + "width": 3010, + "x": 4857, + "y": 1474, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "05024a80-edda-44a7-afdb-4144d9a1e7be", + "width": 70, + "x": 7727, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0175a251-5071-4676-ae9a-39e090c92434", + "width": 70, + "x": 4437, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 9590, + "layer": "", + "name": "road", + "persistentUuid": "b866b096-b9cf-4270-8ac5-e0b9aefe659a", + "width": 140, + "x": -3893, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "d49162e0-edb0-454d-82dd-e47a12544e7e", + "width": 1400, + "x": -3893, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ac6e014-b5ea-456e-b7d4-70f84691e789", + "width": 70, + "x": -3543, + "y": 1614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b0267c0a-20a5-40a0-b937-331b740c137f", + "width": 70, + "x": 4857, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21aed6fe-ede4-494c-bf6a-bb72673bf855", + "width": 70, + "x": -3963, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 9590, + "layer": "", + "name": "road_1", + "persistentUuid": "1e70ad54-bcef-43c9-ac8b-816c182a531f", + "width": 70, + "x": -3963, + "y": 1264, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road_1", + "persistentUuid": "db962ee1-32fe-496e-982d-d2d54a459aa8", + "width": 70, + "x": -3543, + "y": 1684, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3220, + "layer": "", + "name": "road_2", + "persistentUuid": "bb0d843c-2b8d-4e9b-8b15-b3b9028de15e", + "width": 70, + "x": -3753, + "y": 1614, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc4af95a-7aa3-4c93-98fe-1091a0ce2e70", + "width": 70, + "x": 8287, + "y": 1194, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c3703985-3976-401b-9f9a-1c2884fab368", + "width": 3500, + "x": 937, + "y": 7074, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "8c3f4b67-3544-4522-8c0a-a718d5978929", + "width": 2450, + "x": -1513, + "y": 7074, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "e7049f54-b082-4612-9958-d24eaaf0216e", + "width": 2450, + "x": -1583, + "y": 7144, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "bca4e225-ce36-4bd7-98c2-a63239067b00", + "width": 3780, + "x": 867, + "y": 7144, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "0061f9f2-b6e8-468c-8872-288b773e79a1", + "width": 3150, + "x": 4857, + "y": 7144, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "1f7e1aa5-0e63-452e-ab28-7358c41161db", + "width": 6720, + "x": -1793, + "y": 7424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "b62d8efc-feb6-4453-bc01-feb38fba8bf3", + "width": 3080, + "x": 4927, + "y": 7424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "d713a628-d44f-441e-b342-b8b496e4ab66", + "width": 6160, + "x": -1653, + "y": 7354, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "8e0d8e29-96c2-4edf-b048-22efcd4621b0", + "width": 3010, + "x": 4857, + "y": 7354, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5600, + "layer": "", + "name": "road", + "persistentUuid": "1999b602-3c60-4e8d-aa7b-82da407eb380", + "width": 210, + "x": 7797, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2100, + "layer": "", + "name": "road_1", + "persistentUuid": "197a2404-86ed-4a1b-aef5-387c421a9495", + "width": 70, + "x": 7727, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "a809eb80-c414-4436-a642-42c830f3b001", + "width": 2240, + "x": -1513, + "y": 7634, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "b80a6d04-4c5f-4882-ae1a-0da56dd56374", + "width": 3430, + "x": 1077, + "y": 9874, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c8628c8d-296f-4f07-bc6b-cbad0a4ae29a", + "width": 2240, + "x": -1513, + "y": 9874, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "5899f439-e32a-4d9f-86cf-217acec22057", + "width": 2450, + "x": -1583, + "y": 9944, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "f4b2cf88-827d-4a88-8997-008536bb7f08", + "width": 4060, + "x": 867, + "y": 9944, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "c6a16643-688f-4df9-8f50-f53eddac0f82", + "width": 2870, + "x": 4927, + "y": 9944, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "bb17a150-0deb-437f-812b-febfae33d0b6", + "width": 4550, + "x": -1793, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "ce14dd72-2e35-48ac-9fd6-369e0364e4d3", + "width": 1610, + "x": 8287, + "y": 9944, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "a953f1aa-96fb-4949-a597-f5033fa53758", + "width": 4270, + "x": -1653, + "y": 10154, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "57bf996d-3617-4f28-a434-8ac0554f9af2", + "width": 2870, + "x": 4997, + "y": 10154, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "0427e7a2-33ff-4fd4-8cd0-89b7ca24f28e", + "width": 3990, + "x": -1513, + "y": 10434, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2240, + "layer": "", + "name": "road", + "persistentUuid": "320d3e64-54b3-434d-83fc-1bcceabb017a", + "width": 140, + "x": -3683, + "y": 8614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "1b3dfdfe-bbf2-4796-8773-03a743b2a765", + "width": 70, + "x": -3543, + "y": 8824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "a7637bbe-cefe-439b-b6e5-87239b284c35", + "width": 210, + "x": -2073, + "y": 8614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2520, + "layer": "", + "name": "road", + "persistentUuid": "c0de8dbb-7a9b-44fd-89b3-16ca7eac58e4", + "width": 210, + "x": 8077, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "road_1", + "persistentUuid": "00c3ddca-1d1f-4a42-b3cb-ea0615c65e22", + "width": 70, + "x": 7727, + "y": 7704, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2520, + "layer": "", + "name": "road", + "persistentUuid": "01f93ec8-baca-4ddb-8fd3-275964ccbf2a", + "width": 210, + "x": 7797, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "road_2", + "persistentUuid": "3b82a305-3ce7-4bae-ac3a-28a9e4ff507e", + "width": 70, + "x": -3753, + "y": 8754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2450, + "layer": "", + "name": "road_2", + "persistentUuid": "7f3f72d7-40d1-4331-bfa9-d84a4de3f546", + "width": 70, + "x": 8007, + "y": 7564, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "04c4a77a-da4a-4b39-b4ec-5af74931731d", + "width": 280, + "x": 7797, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aaf7019c-afaa-4ccf-8e73-7739f9af233e", + "width": 70, + "x": 8007, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "69d09f17-7884-4b5a-9bb1-e2b983e8a617", + "width": 70, + "x": 7867, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "158e4384-e62c-435f-b052-dfea3fd421ab", + "width": 70, + "x": 8007, + "y": 1614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "84a3b8a0-b2c1-48e5-ba06-cdc44928fcde", + "width": 70, + "x": 7937, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a4e283f7-6658-45b6-8405-987309aebde4", + "width": 70, + "x": 8007, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "100d02fc-4553-4139-9705-9b5e47c9ce24", + "width": 70, + "x": 7727, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "410d7f3e-05b3-4edd-b3c9-a44c9c16bfd3", + "width": 70, + "x": 8007, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "76b221ad-dc7c-4bb7-aaa6-365a4074ea0f", + "width": 70, + "x": 8007, + "y": 7214, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "45d1cdd0-3462-479d-b800-985bfd3bca64", + "width": 70, + "x": 7867, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd46ec3a-75a5-4b75-be53-1addf61d6493", + "width": 70, + "x": 8007, + "y": 7494, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "d2f76892-b4f8-45e0-9080-4d4ed506c86d", + "width": 210, + "x": 8077, + "y": 7424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4f4e4b30-0c74-407e-b04b-63ff2da89f73", + "width": 70, + "x": 8007, + "y": 7284, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "757a6b1f-44c2-4815-8123-e14a72f852fe", + "width": 70, + "x": 7937, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "76fedd89-1faa-4cb4-88e7-1c0413b6d744", + "width": 70, + "x": 8007, + "y": 7424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5c8b0251-63bf-4ebf-bfab-ee5a7b6b0ae2", + "width": 70, + "x": 7727, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fc3dea13-6164-4d60-bf7e-396a2a30c599", + "width": 70, + "x": -3753, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6ff7dc4-91a5-4713-983b-ddc3793aba66", + "width": 70, + "x": -3753, + "y": 4834, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "46903b5c-22cb-49e8-819a-b545f22735ba", + "width": 70, + "x": -3613, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1b6e048-500b-4d88-ac89-283f64f754d3", + "width": 70, + "x": -3753, + "y": 4904, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44dac824-320d-41ed-806e-96bcb5aa4696", + "width": 70, + "x": -3683, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a2140f4a-16a5-4e84-aef2-59476d87169b", + "width": 70, + "x": -3543, + "y": 5184, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f8f11418-9fef-472d-ab82-6e3e68ed0395", + "width": 70, + "x": 517, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1120, + "layer": "", + "name": "road_2", + "persistentUuid": "69496869-8d2f-40d8-8fd6-74dedf4cc667", + "width": 70, + "x": 517, + "y": 214, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "73a315f1-3dff-4f2a-9d0c-4a9d0df8a585", + "width": 70, + "x": 517, + "y": 1334, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1913712f-86fc-4002-a39f-876f073a2085", + "width": 70, + "x": 517, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9847062e-c7d0-449d-afbc-d10d7bed0fbd", + "width": 70, + "x": 587, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "255b6bd9-befd-4b19-9c38-b506482ea8af", + "width": 70, + "x": 447, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d7b5bf99-5ccd-4955-8a70-8fa73833a081", + "width": 210, + "x": 307, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0bb1a760-3991-4552-822d-b4be291155d8", + "width": 210, + "x": 587, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc222c3e-a66b-4c45-98a2-03beecabe33a", + "width": 70, + "x": 377, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "717edcbe-4da9-485d-8ba4-799af7c461a6", + "width": 3780, + "x": 727, + "y": 1474, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0cca8dc1-0ece-4948-a9b5-6270d250f547", + "width": 70, + "x": 657, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "eed0a2db-114b-4c3f-9de4-fbed63384bca", + "width": 70, + "x": 4647, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d317092c-f1ab-49ca-b723-20cf23ba3850", + "width": 70, + "x": 4507, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5691c3f0-40ec-4f72-a45b-4f8c19e9557a", + "width": 70, + "x": 4787, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0cc6443b-11a9-4edb-b32f-727d7b9c24a0", + "width": 70, + "x": 4647, + "y": 1614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "db1710f8-c48b-4adf-ba90-3f9a22b5ea02", + "width": 70, + "x": 4577, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "269f6052-b904-471f-ac13-b9a2c76eea6b", + "width": 70, + "x": 4647, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1df7aaa-9569-4839-8554-b7c129d1d049", + "width": 70, + "x": -3753, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "d42a3664-8d9c-4575-8e97-c8c0aff516db", + "width": 840, + "x": -3543, + "y": 1404, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc523658-5d31-483f-bcf4-af4c1857838b", + "width": 70, + "x": -3613, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f3795f9d-d2a7-456f-a203-7e73a1693a73", + "width": 70, + "x": -3753, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "e2f53c3a-7e15-420a-8f0d-6ab558baac5d", + "width": 1260, + "x": -3753, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "076c6955-d5c0-4a95-88cf-ec72b64618ab", + "width": 70, + "x": -3683, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2d0b3be3-a05c-4dca-9cc6-aa5b0695a153", + "width": 70, + "x": -3753, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "340f42d9-ca8a-4473-b39b-4423bb63ab46", + "width": 70, + "x": -3963, + "y": 10854, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a78403c7-f5c8-4b75-b07a-b3cd1960def9", + "width": 70, + "x": 8007, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "27b3ab2a-6dbc-4fa9-bad4-a8ba24f525b4", + "width": 70, + "x": 7727, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "36ef10db-68a8-4d1b-a767-82ec10986e65", + "width": 70, + "x": 8007, + "y": 10014, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "53b8d0fb-bc94-43e5-81d1-6f4293812e90", + "width": 70, + "x": 7867, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51e71fca-2dd2-4841-b044-375ea3201e86", + "width": 70, + "x": 8007, + "y": 10084, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "23ea8c5b-8a03-4432-9eb3-9f484967c6ec", + "width": 70, + "x": 7937, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6860, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "700d9690-634c-4de2-9438-dc3ebfec2228", + "width": 70, + "x": -6203, + "y": 1124, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1bfaf5d1-8ba6-4a78-a98f-3dc1a65f41f9", + "width": 70, + "x": -6203, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61215866-e310-4cb9-8023-8c2844ad4598", + "width": 70, + "x": -6203, + "y": 1054, + "zOrder": 12656, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "836a98b8-f383-4e3b-a2fe-7426e02c7896", + "width": 70, + "x": -5433, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e36755fc-f168-4758-9a13-c63ba75b14c2", + "width": 70, + "x": -5223, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33447916-8c0d-4c21-a640-d8bbeb6b6cc8", + "width": 70, + "x": -4103, + "y": 984, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "372c5866-2470-4430-816d-1682d1d7739c", + "width": 70, + "x": -4173, + "y": 984, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "998b7ffb-7757-4156-bd2d-7e95e58722e8", + "width": 70, + "x": -4593, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e817a5f-15c6-4126-9fc1-335214b7d852", + "width": 70, + "x": -5433, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "44638134-6443-4c81-9498-4637b7efe16c", + "width": 70, + "x": -4103, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ad5f1b7-09b3-415e-977f-67e14e8cbf2a", + "width": 70, + "x": 9757, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1dfe2449-44b3-4d0e-8823-3d13f5170d10", + "width": 70, + "x": 5417, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0632d455-c0e4-4e40-97db-cef5d8256038", + "width": 70, + "x": 5487, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d77a9235-c402-4d8d-86c2-f265ed96dfdd", + "width": 70, + "x": 5347, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2336a3e-83b1-4e7d-bac5-5dc99aa1cefd", + "width": 70, + "x": 5207, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef673fef-fea8-4476-99fd-54b88b489c32", + "width": 70, + "x": 5277, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aba3b7c2-25e6-4a76-a93e-470096cfa7db", + "width": 70, + "x": 5067, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2bca0fec-6c47-4e73-ab3b-fa98292c567a", + "width": 70, + "x": 5137, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "288c971c-fa74-4c65-9f9e-858b06b17f11", + "width": 70, + "x": 4997, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9a5833b-e3f6-4d3f-9280-43fe473cd6e7", + "width": 70, + "x": 4857, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48eb11cd-4318-43d3-9123-e1d629df8ae4", + "width": 70, + "x": 4927, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c6a1457-6991-4420-9c17-e9cf722b8ab8", + "width": 70, + "x": 4717, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20dbbbcc-e419-4691-83cc-47725cd4729a", + "width": 70, + "x": 4787, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7aca7947-6eff-4bbc-ab62-c42494be290a", + "width": 70, + "x": 4647, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "214b6242-125c-4e4f-8bf7-0fb1a5cd0048", + "width": 70, + "x": 4507, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f7a7cf4-b751-4330-909f-7316cf74cb06", + "width": 70, + "x": 4577, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22e300cf-9737-4e10-add1-09327200b57b", + "width": 70, + "x": 4367, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1f92ade-04d7-4321-b44b-69c3f210414f", + "width": 70, + "x": 4437, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39e8ec7e-7a5d-4641-9c5e-831bd052892c", + "width": 70, + "x": 4297, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ed47e57-50bb-4020-90cc-8597e5cf2a33", + "width": 70, + "x": 4157, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70786bdf-212b-4826-bf5a-2189c2fcadf7", + "width": 70, + "x": 4227, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3142f637-8478-4888-8c50-d232d4441183", + "width": 70, + "x": 4017, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef5914d4-c7ed-4d26-8c90-93a9d3b0fd0a", + "width": 70, + "x": 4087, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "271f3691-86d0-4bf1-a0d5-0c96f16e7a4d", + "width": 70, + "x": 3947, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4c43fa8-81fb-4d77-859b-52e9eb1051d9", + "width": 70, + "x": 3807, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a899d654-b542-443e-8ab4-cdd00b9471e3", + "width": 70, + "x": 3877, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c56fca4-3f26-4987-95fb-b3ea0e7e0087", + "width": 70, + "x": 3667, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4d57bc82-0bf1-4ab3-8efd-00432e9dce3b", + "width": 70, + "x": 3737, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "275c6b79-6f1d-4389-9ad6-77dd0bbf9a3e", + "width": 70, + "x": 3597, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f62c58c5-c179-4080-bd1e-dd89dc3dc3a6", + "width": 70, + "x": 3457, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "466697f2-b668-4258-94d5-fc6fc846685c", + "width": 70, + "x": 3527, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eeb82494-fd47-4687-b87e-40c749d69cf7", + "width": 70, + "x": 3317, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2313cbc-24a5-4819-8378-897aa0c9a9d8", + "width": 70, + "x": 3387, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3233d7b7-0df4-4bd6-9cd0-6471b48d8a2d", + "width": 70, + "x": 3247, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "404cec76-5a73-48c9-a26f-e9a69db394ee", + "width": 70, + "x": 3107, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d0f16604-713e-43d1-b033-7dde4fd9ffea", + "width": 70, + "x": 3177, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2ed8f6a-a718-4f2d-9b66-8ef08b41c1dd", + "width": 70, + "x": 2967, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70a8c036-f978-4111-9881-c26de56ab053", + "width": 70, + "x": 3037, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b1baae41-e0cc-4a28-bc05-cde7c409b557", + "width": 70, + "x": 2897, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e64de297-7867-47a3-bf73-e602bd686e40", + "width": 70, + "x": 2757, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17cc6827-fb44-4231-8cdf-f6013699d613", + "width": 70, + "x": 2827, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6a78430-aefc-4bea-8800-11717efc5d43", + "width": 70, + "x": 2617, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1847bbbc-9058-438a-9664-3ec579702196", + "width": 70, + "x": 2687, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a91f22c7-c768-4f76-863e-7ba3fb37f109", + "width": 70, + "x": 2547, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "51d6805e-2375-48c7-9c48-92d1311d1c8e", + "width": 70, + "x": 2407, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a4ce198-2807-4d37-bba5-b793ba014f3a", + "width": 70, + "x": 2477, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1050c4f1-0eb6-4f0c-9801-80609b9efa01", + "width": 70, + "x": 2267, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "25226020-459c-4b04-81a1-77b56314db35", + "width": 70, + "x": 2337, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbd257ff-7b57-430e-8567-10b082c51bbe", + "width": 70, + "x": 2197, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03cea356-169d-4cb8-b916-3bfbd208542a", + "width": 70, + "x": 2057, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0579bcc2-b5fb-4997-8bf7-557e31bc630e", + "width": 70, + "x": 2127, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50cd057a-64ea-439b-a7fa-a976c46188b1", + "width": 70, + "x": 1917, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2310ede4-a08a-4190-9068-385bc56ab42f", + "width": 70, + "x": 1987, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a397964-e353-439e-81fd-f1b4238509cd", + "width": 70, + "x": 1847, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd18fe03-3313-4015-8f1b-aa66dc3683d3", + "width": 70, + "x": 1707, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ece99597-e8c8-4b9d-b1c5-81aac204fef3", + "width": 70, + "x": 1777, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2428e08-fc3d-4c1c-9112-030e36815930", + "width": 70, + "x": 1567, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee927bdd-a2a3-42f6-b645-079ffc4ad86d", + "width": 70, + "x": 1637, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bb099eda-20ca-4e88-9cb2-77d5b28bb763", + "width": 70, + "x": 1497, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "152e195b-9317-4ab2-b376-ef0743d0e26b", + "width": 70, + "x": 1357, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2233d09-1b29-45a3-a557-60198a2e1f61", + "width": 70, + "x": 1427, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f3b2062-7a13-410f-9198-426766598da1", + "width": 70, + "x": 1217, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c83312a-28e0-4ede-92c5-d2a0498d8d08", + "width": 70, + "x": 1287, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b9c75901-1180-42b5-9327-07ddeccda521", + "width": 70, + "x": 1147, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "074c4fe6-34c1-4277-a74d-66c4e2b8c7b0", + "width": 70, + "x": 1007, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a01ec81-20a2-4782-98e2-8ecc7b1a34c0", + "width": 70, + "x": 1077, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1eb3471-1a71-445e-baeb-412aa5014f10", + "width": 70, + "x": 937, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85995527-a4c9-4b4e-98e7-0ff6f9be71f9", + "width": 70, + "x": 9617, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2460128-1a32-4be0-8734-aa9af44201d2", + "width": 70, + "x": 9687, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb78f2bf-48dc-4328-bf00-013c311650ab", + "width": 70, + "x": 8287, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a149ab2d-d9f2-4400-8623-cb22062d882f", + "width": 70, + "x": 8217, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68530887-c3cd-4f23-8d2b-c8a21ab6976a", + "width": 70, + "x": 8077, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bc7a991-0e5e-4eac-9641-fa94202d1fef", + "width": 70, + "x": 8147, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd8c7be1-040a-49e1-bf0c-e643ae4b46dc", + "width": 70, + "x": 7937, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "51affde6-cb63-4312-8d5e-705ffdac8ff5", + "width": 70, + "x": 8007, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5fe7980-b22d-4a9b-a35e-14480dc6f861", + "width": 70, + "x": 7867, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82061f11-61de-4363-b38e-38b57b579f60", + "width": 70, + "x": 7727, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6a57081-7827-4c81-81ef-42c4e3780f06", + "width": 70, + "x": 7797, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19a2265c-2e52-478f-8857-b322ebdf3444", + "width": 70, + "x": 7587, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c2195fb-1b77-4583-aae2-4c4dab957df9", + "width": 70, + "x": 7657, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df50bcc5-15e8-4364-b139-885e662f2a1f", + "width": 70, + "x": 7517, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2eccf182-529b-466d-81f0-dd59530b911c", + "width": 70, + "x": 7377, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "310d525f-4467-43ea-b4e4-989a2c971db1", + "width": 70, + "x": 7447, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86a814d4-a104-499c-9458-b00ca9de04e5", + "width": 70, + "x": 7237, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "297c919b-ba4d-4f1a-9679-2a5da5071fab", + "width": 70, + "x": 7307, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f1383bf-b28d-4e8c-9850-dc7853383ece", + "width": 70, + "x": 7167, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf4776e2-83d2-41c6-9810-baff2b7c672c", + "width": 70, + "x": 7027, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fec05cf4-b2ec-48a0-8f76-4b56c12e72d3", + "width": 70, + "x": 7097, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28e9b878-1f5e-48ce-9cef-c0258798082f", + "width": 70, + "x": 6887, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6193c3a3-e8a8-4d72-8bfb-6dd7a0633134", + "width": 70, + "x": 6957, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcbb53af-4d98-4f14-9398-574c33b15a69", + "width": 70, + "x": 6817, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e9323d9-630f-4b0c-b97a-07ce5e0c0e01", + "width": 70, + "x": 6677, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1eb82c27-c0c6-4d60-97f5-db818063d429", + "width": 70, + "x": 6747, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1de3c10a-a505-4435-a2b3-705b99a7bded", + "width": 70, + "x": 6537, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96329a33-686b-45b8-b0a4-8a668838e567", + "width": 70, + "x": 6607, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d35813e3-bd1d-4337-a7e4-a7a3006a1394", + "width": 70, + "x": 6467, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1a64a8f-ae16-4d8e-8ab6-70145f56b03b", + "width": 70, + "x": 6327, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d35a997-313d-49d2-b005-c749eadd5f28", + "width": 70, + "x": 6397, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc13a923-c62b-42d0-ac27-df26e528d6ee", + "width": 70, + "x": 6187, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c479669b-5e32-4611-8ae9-5b6601585854", + "width": 70, + "x": 6257, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aaeba25f-d9d0-46e5-8124-5a79fc9de44b", + "width": 70, + "x": 6117, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e060e88-d8e4-4fb6-a8d5-800864be8c80", + "width": 70, + "x": 5977, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21832311-9541-4351-abb6-23389e14f72e", + "width": 70, + "x": 6047, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31ed4b8e-9f11-4884-be75-81d85867d7c3", + "width": 70, + "x": 5837, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fea1e476-b223-4e7f-ab91-be2a0314815d", + "width": 70, + "x": 5907, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d30dc60-c588-44dd-8325-0338ffcb0915", + "width": 70, + "x": 5767, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d65b641b-82f8-4b01-b996-ff8ebee61e20", + "width": 70, + "x": 5627, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e2aae54-4144-46ba-aac7-b9031d310874", + "width": 70, + "x": 5697, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd146065-32b8-4e81-81e8-7bbd617c5acd", + "width": 70, + "x": 5557, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e360445-9a66-4088-abe9-fa3482a05064", + "width": 70, + "x": -253, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba64dbab-309a-4b2e-8a83-878b477869e8", + "width": 70, + "x": -183, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9a8dd77-fe2a-44b5-9c42-981099b19d17", + "width": 70, + "x": -323, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31b49f21-94ce-4542-83d7-4a3de53f76f5", + "width": 70, + "x": -463, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e8984abb-7c4a-4bc0-926c-0cf8c8f54af8", + "width": 70, + "x": -393, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "055e649f-9b63-4938-887e-e669f39b105b", + "width": 70, + "x": -603, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e33e9b98-5ef9-4710-88f8-48aff4a0810d", + "width": 70, + "x": -533, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e515afa6-19a7-4753-9643-e0301f03513d", + "width": 70, + "x": -673, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a47d4a0-0568-4d22-bf50-c32f75f63a95", + "width": 70, + "x": -813, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "764b6ed2-4d4c-4d4b-bd07-86b35d04a2cc", + "width": 70, + "x": -743, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f7ae6ad0-f23f-4ac7-a7c2-5ac3734a6c72", + "width": 70, + "x": -953, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22917a84-5a26-457c-a45a-353af63bd57b", + "width": 70, + "x": -883, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd4004cb-d69e-4dad-8d57-47c3b01e4800", + "width": 70, + "x": -1023, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae85ce5b-9d48-4535-b39b-559ccb538379", + "width": 70, + "x": -1163, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ff308668-8d1f-4a6f-a824-df6709b84e9a", + "width": 70, + "x": -1093, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ddcbb36-6b94-4031-ac6c-15403e678afd", + "width": 70, + "x": -1303, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b45471f4-2142-4281-9503-92ac5d867002", + "width": 70, + "x": -1233, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cbfaa03-0050-440e-aecd-983dfce814f9", + "width": 70, + "x": -1373, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7572be97-fe60-479a-8123-09913c1e0386", + "width": 70, + "x": -3333, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6275fce4-1228-4134-85b6-9f8a90cb3400", + "width": 70, + "x": -3263, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd147825-84d2-49e0-82c4-9ad4a59f4f57", + "width": 70, + "x": -3473, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74dd1c83-0276-453d-948f-dd55139cd88a", + "width": 70, + "x": -3403, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5971951-62fb-4d44-898d-f5c3ec600423", + "width": 70, + "x": -3543, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "84f4185f-481d-4f39-8d68-24c058622132", + "width": 70, + "x": -3683, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31e3148d-36cd-47c7-83a7-198041c3e5f1", + "width": 70, + "x": -3613, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5f036f0-1304-4e92-bea2-f9c220f89c59", + "width": 70, + "x": -3823, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b84b8936-58fc-4851-9a87-cdc3074ad1ad", + "width": 70, + "x": -3753, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce2db4c1-6fbe-4881-9fc1-a595fcf87cf4", + "width": 70, + "x": -3893, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c284651a-6d42-445c-8d2f-9a488af733e6", + "width": 70, + "x": -4033, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfbf1a12-31d0-4b3e-8cf1-017277e5cc53", + "width": 70, + "x": -3963, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d6e1aa21-b8e6-42fe-bf47-30152e80f671", + "width": 70, + "x": -4103, + "y": 74, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "976b9f05-998b-464b-a2cb-9d0d2a8579e6", + "width": 70, + "x": 97, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f46aa5e3-02ee-45e6-bb9b-42ff1650fd73", + "width": 70, + "x": -43, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "46145ce2-52b6-445f-8222-26af3462f80d", + "width": 70, + "x": 27, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d15ee7b-ae5c-463d-bedc-c412b1858dee", + "width": 70, + "x": -113, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f5580796-1bba-4ea6-8073-b7a76dd4fc13", + "width": 70, + "x": 9757, + "y": 2034, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bbacef17-c228-4109-862f-7b4457cf6d7a", + "width": 70, + "x": 9757, + "y": 1964, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ab71dfb-dc15-4f83-ba2d-5b4b4ec5e69d", + "width": 70, + "x": 9757, + "y": 1894, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5cf58c5a-e112-4b69-b750-5eb5062476f2", + "width": 70, + "x": 9757, + "y": 1824, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c631b68-fdb0-4a2c-b4a7-7a9fca921963", + "width": 70, + "x": 9757, + "y": 1754, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8bfee0c7-2c70-4a30-b585-f042a9ac214f", + "width": 70, + "x": 9757, + "y": 1684, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c060e372-63eb-410c-a7c1-4e73d4761f2a", + "width": 70, + "x": 9757, + "y": 1614, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61aea4ab-1034-48ab-8547-45992802598b", + "width": 70, + "x": 9757, + "y": 1544, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc06ff94-c418-4bb3-a18c-09a2c5bff7f0", + "width": 70, + "x": 9757, + "y": 1474, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7387033f-f5be-4d0c-997d-fd1722cfc796", + "width": 70, + "x": 9757, + "y": 1404, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2094e568-e355-42f4-a27b-999a1cc46cb8", + "width": 70, + "x": 9757, + "y": 1334, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba43f484-6663-4eec-8e87-f871623ed8b1", + "width": 70, + "x": 9757, + "y": 1264, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da8e1a8f-4c9a-4308-b53f-33bc6f12e81a", + "width": 70, + "x": 9757, + "y": 1194, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e46bd61-3b69-49b0-9c9e-c45f3b28c403", + "width": 70, + "x": 9757, + "y": 1124, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "49bdc911-c39b-4152-8761-582dca188cde", + "width": 70, + "x": 9757, + "y": 1054, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "befb6664-aa2c-4ce1-a655-2b7ff0ce7716", + "width": 70, + "x": 9757, + "y": 984, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6062429e-ccf2-48fa-8acf-b690bc151e8b", + "width": 70, + "x": 9757, + "y": 914, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd417d61-1a08-4849-99c6-c52a3dcb169e", + "width": 70, + "x": 9757, + "y": 844, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2c0af05-8704-4363-9533-82b97c6f6d32", + "width": 70, + "x": 9757, + "y": 774, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d0ab02f9-7dda-433b-b387-2956965ef338", + "width": 70, + "x": 9757, + "y": 704, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b4fbbe5-eb73-4e15-948e-c86551977200", + "width": 70, + "x": 9757, + "y": 634, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2623bd98-1c9b-4fa0-a24e-0f0119d7daa6", + "width": 70, + "x": 9757, + "y": 564, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df3f440f-da51-48d6-993b-4efaf817df60", + "width": 70, + "x": 9757, + "y": 494, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e200df9-0271-4395-ae7c-229a1115c3c8", + "width": 70, + "x": 9757, + "y": 424, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db5aeb6e-cc3d-4242-bbf1-aeacea272113", + "width": 70, + "x": 9757, + "y": 354, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52094c10-a10b-436b-b8e6-f2972c315708", + "width": 70, + "x": 9757, + "y": 74, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61b53aac-3ad5-4b3b-aedf-9457b0affd79", + "width": 70, + "x": 9757, + "y": 144, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ceaae1e-a9ae-4a43-a364-546c4e13913d", + "width": 70, + "x": 9757, + "y": 214, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b277fbda-9f1f-43fd-a167-659c12b20534", + "width": 70, + "x": 9757, + "y": 284, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4164bde9-4d83-4e12-a1c6-aeccf1ccfd85", + "width": 70, + "x": 9757, + "y": 3854, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9b8b7c1-7099-4eff-82ae-4fefc54a65ff", + "width": 70, + "x": 9757, + "y": 3784, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cf8af59-dbab-4eab-b2fa-e0d0c9911c81", + "width": 70, + "x": 9757, + "y": 3714, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62d10be6-612e-49da-a30e-9a21af1aa595", + "width": 70, + "x": 9757, + "y": 3644, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c3cdc8e-02bf-4ddf-87e4-190776122151", + "width": 70, + "x": 9757, + "y": 3574, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "27bde73c-5bc0-4d36-8d67-f4605374081a", + "width": 70, + "x": 9757, + "y": 3504, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6945e66b-3ea5-4eb6-81b6-71bca6f7c231", + "width": 70, + "x": 9757, + "y": 3434, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "318b5ad7-c00b-4b59-97f9-46509a1f7a8e", + "width": 70, + "x": 9757, + "y": 3364, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "839afa36-a76c-47c5-b00b-b63d9ae9cb9f", + "width": 70, + "x": 9757, + "y": 3294, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8d884f5-080f-4a3f-8d1e-7904f1f43183", + "width": 70, + "x": 9757, + "y": 3224, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d48e4f58-d8af-42fd-a815-92fb379a65c2", + "width": 70, + "x": 9757, + "y": 3154, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8b58ec1-04bb-41d3-9b86-88a377132ca9", + "width": 70, + "x": 9757, + "y": 3084, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe882646-9c57-4f54-8df2-7dee6b48dd1f", + "width": 70, + "x": 9757, + "y": 3014, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c68b7a2-c742-4431-ae5b-27ee36bcafcb", + "width": 70, + "x": 9757, + "y": 2944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecfe94ea-a282-4e14-a24f-d2ab2c376b53", + "width": 70, + "x": 9757, + "y": 2874, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0497aad-6781-4406-bccf-4a1ba6bce32c", + "width": 70, + "x": 9757, + "y": 2804, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8cbbfa14-7a02-4842-95a7-5b182d87a4a0", + "width": 70, + "x": 9757, + "y": 2734, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "362108a6-2455-41fa-b12f-36d23ded405c", + "width": 70, + "x": 9757, + "y": 2664, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cdd6f373-e1c2-4466-9cf3-d65878ca7077", + "width": 70, + "x": 9757, + "y": 2594, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbb62e01-d1f4-4ce4-9b0c-c161d137d2e8", + "width": 70, + "x": 9757, + "y": 2524, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8e2f4ac-9eb7-47d2-b9d5-48ffd20d36ed", + "width": 70, + "x": 9757, + "y": 2454, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "051218ec-2934-458a-a1f0-a44c97e0c4b1", + "width": 70, + "x": 9757, + "y": 2384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e626b740-633a-4868-897c-c2ae873e36e5", + "width": 70, + "x": 9757, + "y": 2314, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c91ebe62-79ea-40e2-bea1-fb2aece0b8d8", + "width": 70, + "x": 9757, + "y": 2104, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2766dc00-ea5b-4989-9ed1-e65a4f4c16e6", + "width": 70, + "x": 9757, + "y": 2174, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb9683d8-1660-4aca-a67e-9fc531231981", + "width": 70, + "x": 9757, + "y": 2244, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "67594b81-6a2e-47f6-acee-6ddd354094b8", + "width": 70, + "x": 9757, + "y": 4134, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ab4e716-1932-4a78-9a53-9c1ac8365b9c", + "width": 70, + "x": 9757, + "y": 4064, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80b81a0b-74e3-4e01-94f5-095448e8bb10", + "width": 70, + "x": 9757, + "y": 3994, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dcdab961-c17b-4375-8535-313a6d7455c0", + "width": 70, + "x": 9757, + "y": 3924, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ffd7dd86-5020-40d5-a936-db80642ad37f", + "width": 70, + "x": 9757, + "y": 5954, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68e44ecb-60f8-4653-ab7a-630d335c029d", + "width": 70, + "x": 9757, + "y": 5884, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d8d80052-84fe-48d6-a804-2adce34e5a83", + "width": 70, + "x": 9757, + "y": 5814, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a354575-b964-4abe-a17f-e254007e0033", + "width": 70, + "x": 9757, + "y": 5744, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a22b7b7-76eb-4e14-87e2-f8695ffd83ec", + "width": 70, + "x": 9757, + "y": 5674, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbb7a2b6-ecd7-4459-acb2-d13b96a36249", + "width": 70, + "x": 9757, + "y": 5604, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d39089b-6d0e-42ac-8723-551cbd46f8d1", + "width": 70, + "x": 9757, + "y": 5534, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1240aec-715f-4ff4-b0ad-3391214995eb", + "width": 70, + "x": 9757, + "y": 5464, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d254a17-55bd-4586-a9df-437ac396abbf", + "width": 70, + "x": 9757, + "y": 5394, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8cb9a25-3c1e-43ab-8300-8d3bcdfd35c0", + "width": 70, + "x": 9757, + "y": 5324, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed136e5a-211d-43b0-9181-31bdb8458c7c", + "width": 70, + "x": 9757, + "y": 5254, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74d73cc7-053f-4ef9-9508-35a18e356772", + "width": 70, + "x": 9757, + "y": 5184, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71f4feb4-1cf8-458e-9654-f3fc9e2fde26", + "width": 70, + "x": 9757, + "y": 5114, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5439dc58-31ae-47bf-bfd4-ddd68236feea", + "width": 70, + "x": 9757, + "y": 5044, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cffeed2-427a-426a-9e3c-68b1a084ad80", + "width": 70, + "x": 9757, + "y": 4974, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d823644-5472-4a1c-8b0d-0a90483a16f5", + "width": 70, + "x": 9757, + "y": 4904, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1a0f1db-8138-4c56-8209-75bda05007df", + "width": 70, + "x": 9757, + "y": 4834, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc568d7d-3dec-4c89-af61-d262d437c838", + "width": 70, + "x": 9757, + "y": 4764, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "359bc20f-fa38-4f57-951a-965e61b5b3f7", + "width": 70, + "x": 9757, + "y": 4694, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06a6284f-7783-4c82-91bd-7e77e68cf4e9", + "width": 70, + "x": 9757, + "y": 4624, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b25cea51-81a4-4534-89f2-0315eef070d3", + "width": 70, + "x": 9757, + "y": 4554, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bf23e85-d65b-4a0a-9fd6-d5b8360b82e3", + "width": 70, + "x": 9757, + "y": 4484, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "32718747-d347-4948-8f62-a5d6f96f76d1", + "width": 70, + "x": 9757, + "y": 4414, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3aec859a-891e-42f5-9ddd-554b223ac1df", + "width": 70, + "x": 9757, + "y": 4204, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1289ecc4-b932-49ef-a16b-352bfabd8073", + "width": 70, + "x": 9757, + "y": 4274, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3a20fd8a-570c-4d31-800d-05cd6b3c059b", + "width": 70, + "x": 9757, + "y": 4344, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "989aa839-0fae-4abd-bd56-294e2bcaf6b8", + "width": 70, + "x": 9757, + "y": 6234, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5cbfb99a-250e-412c-a25f-45bafdff4b6a", + "width": 70, + "x": 9757, + "y": 6164, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa7483f3-dc0e-4d24-aeec-f8c9b9e765d6", + "width": 70, + "x": 9757, + "y": 6094, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1bf91bd1-ef55-438c-8512-182864e0e9bb", + "width": 70, + "x": 9757, + "y": 6024, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76f2be33-d002-49d8-94f9-b3b5247dc73e", + "width": 70, + "x": 9757, + "y": 8054, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e6e3d7f-395d-49ff-bd83-002804379a43", + "width": 70, + "x": 9757, + "y": 7984, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04333d73-0b19-41d2-8048-16ae4d7c0a4e", + "width": 70, + "x": 9757, + "y": 7914, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b98eceb2-201d-4766-a6a2-71aa406b5174", + "width": 70, + "x": 9757, + "y": 7844, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5db2f48f-a4fb-4a3a-b451-700f9d576208", + "width": 70, + "x": 9757, + "y": 7774, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61c75cbe-39d6-443d-bebb-0acc6a75b9fc", + "width": 70, + "x": 9757, + "y": 7704, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01da21d4-df75-4afa-a39d-191fb644b947", + "width": 70, + "x": 9757, + "y": 7634, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24e63eda-1677-445f-8bba-5c392689cf06", + "width": 70, + "x": 9757, + "y": 7564, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "babec5f5-e0fb-4d91-87b8-0125b95971bb", + "width": 70, + "x": 9757, + "y": 7494, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "94e972a9-e777-4813-ac8d-b5f5c6caa738", + "width": 70, + "x": 9757, + "y": 7424, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df6d85dd-65aa-4dc6-9d51-b9b56ae57645", + "width": 70, + "x": 9757, + "y": 7354, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fbd51636-a3c1-47cb-aa8f-17231e1533c8", + "width": 70, + "x": 9757, + "y": 7284, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b651eb8-8dd5-410a-b805-302edf8365ce", + "width": 70, + "x": 9757, + "y": 7214, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89aa6a3a-3ff9-4a22-9325-b9e7b5a3c163", + "width": 70, + "x": 9757, + "y": 7144, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee750230-9cc3-4fd6-b375-fc4d0281034d", + "width": 70, + "x": 9757, + "y": 7074, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97afe3fd-1da0-474c-96dd-a5f36a87f314", + "width": 70, + "x": 9757, + "y": 7004, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a580849f-a56d-400d-b148-ce005efa8ee5", + "width": 70, + "x": 9757, + "y": 6934, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "15821075-aae7-4195-8cf3-733897039145", + "width": 70, + "x": 9757, + "y": 6864, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9da2d6ed-1d2a-4c4e-9ee8-b8468b6f951a", + "width": 70, + "x": 9757, + "y": 6794, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a800fb1-850a-4a03-86bb-9ad3e7b8258c", + "width": 70, + "x": 9757, + "y": 6724, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a25b91eb-b971-4ece-8eb0-0e43f092cbae", + "width": 70, + "x": 9757, + "y": 6654, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6ddf978-9560-47e6-9ae9-33fe63e0d3ad", + "width": 70, + "x": 9757, + "y": 6584, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e656c09-852c-4fe6-971c-8b02f15b7746", + "width": 70, + "x": 9757, + "y": 6514, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c55c47c-1eba-455e-920e-bb53cfecd9e5", + "width": 70, + "x": 9757, + "y": 6304, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c57b37d-74c8-44d8-aa31-b9dd2499e6a7", + "width": 70, + "x": 9757, + "y": 6374, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9815bdd-681d-4c19-bcf4-8cfbf66650bf", + "width": 70, + "x": 9757, + "y": 6444, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b2c896e-c043-4baf-a2bf-d51db2af733c", + "width": 70, + "x": 9757, + "y": 8334, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bf332707-7dcc-4213-9fc1-fe42ae072fd4", + "width": 70, + "x": 9757, + "y": 8264, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d42b81f6-6c89-4169-9ea4-150ff2833ecc", + "width": 70, + "x": 9757, + "y": 8194, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87c756b8-cfe0-4865-82cf-9068fb79a0b5", + "width": 70, + "x": 9757, + "y": 8124, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b1c12a3-73ae-41c1-af7c-9301bf8bc3dc", + "width": 70, + "x": 9757, + "y": 8404, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "785aa783-095b-4135-8345-655f863e6ce0", + "width": 70, + "x": 9757, + "y": 8474, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6e14bed-e65b-4c45-aea6-0317c2a2fe6d", + "width": 70, + "x": 9757, + "y": 8544, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa3ac7a6-b996-4123-ae32-376c5878bbc2", + "width": 70, + "x": -4453, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fb98446-c14a-4b89-87a4-141247a23909", + "width": 70, + "x": -4523, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96167c7c-d2b1-4714-9541-672f9d3cfce4", + "width": 70, + "x": -4243, + "y": 984, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d20258c-f859-4a31-9303-6e1de4b96f22", + "width": 70, + "x": -4313, + "y": 984, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c415bef-6019-4303-bcd7-34fb4dfa30ac", + "width": 70, + "x": -5153, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74ba1321-57be-46f6-b0b7-771153167da5", + "width": 70, + "x": -5083, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbe6d447-3d2c-4e6c-b58a-39d4ae4b3806", + "width": 70, + "x": -5013, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "695b899d-f00c-4062-bb79-d275ee832f9e", + "width": 70, + "x": -4943, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bce8ce67-4950-4210-824c-1197b3a03b1c", + "width": 70, + "x": -4873, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "40ee731f-8352-4160-804b-c572f0acea33", + "width": 7350, + "x": 1007, + "y": 1054, + "zOrder": 12658, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 8820, + "layer": "", + "name": "sand_1", + "persistentUuid": "794aa9b6-1d0f-48ed-ab2e-407c0d3f4274", + "width": 140, + "x": 8357, + "y": 1054, + "zOrder": 12659, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "sand_1", + "persistentUuid": "4b52fcd6-285f-4053-aebd-2dd8ceb2e817", + "width": 140, + "x": 97, + "y": 144, + "zOrder": 12661, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "f0e951fe-ef6a-4d7a-a9a6-8328a6dc2e94", + "width": 3850, + "x": -1513, + "y": 1824, + "zOrder": 12663, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "7400ca8c-e217-4eb3-9402-1a66ea73c9b7", + "width": 840, + "x": 4927, + "y": 1824, + "zOrder": 12664, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1960, + "layer": "", + "name": "sand_1", + "persistentUuid": "975c9ccd-09f3-446d-a4d7-5f01457d218a", + "width": 140, + "x": 7587, + "y": 1964, + "zOrder": 12665, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "0b0495e8-ec48-46ff-9052-c0ca3bc9b33a", + "width": 5950, + "x": -1513, + "y": 6934, + "zOrder": 12666, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "sand_1", + "persistentUuid": "7264d2cd-217d-405f-82e7-74741ef08aca", + "width": 140, + "x": -3473, + "y": 1684, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "eb6607a0-1f27-4196-86b5-19000e9f3688", + "width": 2240, + "x": -1513, + "y": 7704, + "zOrder": 12668, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "sand_1", + "persistentUuid": "4f3e2abc-327e-4fe2-815f-772af46fdfd1", + "width": 140, + "x": 7587, + "y": 7844, + "zOrder": 12669, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "3f0a8af1-d964-4932-8606-0e8e93850767", + "width": 2100, + "x": -1373, + "y": 9734, + "zOrder": 12671, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5810, + "layer": "", + "name": "road", + "persistentUuid": "6e294afd-1949-4e59-a671-5a25b3bb186c", + "width": 210, + "x": -1793, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3710, + "layer": "", + "name": "road", + "persistentUuid": "434ce07d-2bd4-4e42-8da8-508502a2c36a", + "width": 210, + "x": -2073, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "8a593b21-b5a3-4603-91a4-55aaf2cf6088", + "width": 490, + "x": -2073, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0abbab47-ad5d-4da0-a9f2-fa1674fb21b1", + "width": 70, + "x": -1583, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "99a1a59a-4fe0-4983-bfa9-bea0a600f8bf", + "width": 70, + "x": -2143, + "y": 1194, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3500, + "layer": "", + "name": "road_1", + "persistentUuid": "8d123e17-1249-4da7-9d61-1583efec4119", + "width": 70, + "x": -2143, + "y": 1264, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "f23181cd-62c5-4601-9c77-2e1757f793d9", + "width": 70, + "x": -1583, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3150, + "layer": "", + "name": "road_2", + "persistentUuid": "d83622dd-1eb9-438e-8dd0-c818dd525024", + "width": 70, + "x": -1863, + "y": 1684, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2520, + "layer": "", + "name": "road", + "persistentUuid": "2593de4f-518f-4ec0-89d6-bc816baf2809", + "width": 210, + "x": -1793, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2170, + "layer": "", + "name": "road_1", + "persistentUuid": "1ef6b35a-dfdd-41c9-9e8f-bd05d8a18298", + "width": 70, + "x": -1583, + "y": 7704, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3f9dd729-9095-4931-afd9-b5bc1bf13eb4", + "width": 70, + "x": -1863, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "47120c5a-afb2-4616-a894-b612d079cd84", + "width": 70, + "x": -1863, + "y": 7494, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0bb0d1ae-94da-4d3e-8506-8feaf8e00b33", + "width": 70, + "x": -1863, + "y": 7214, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b9870084-f8e7-46db-b64c-1cdbbdc5f5b6", + "width": 70, + "x": -1723, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "40e9d184-3e45-444e-a239-d7a9442ded48", + "width": 70, + "x": -1793, + "y": 7354, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "19fb317d-f618-478d-a2f4-7d24c831d96c", + "width": 70, + "x": -1863, + "y": 7284, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fdeb636e-a955-49e0-abe3-072a3ef4fdf9", + "width": 70, + "x": -1863, + "y": 7424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "961e6b48-5531-4947-b639-f212fa891676", + "width": 70, + "x": -1583, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "19c65c00-4680-43ab-b92e-61367dd4cac8", + "width": 70, + "x": -1583, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df46fd2c-f083-49e4-ba7a-5424390473b9", + "width": 70, + "x": -1863, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "767c46b6-2b03-4654-98de-c0e258b1f49c", + "width": 210, + "x": -1653, + "y": 1474, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c13c8a15-d372-4a84-a754-fac4391ae78d", + "width": 70, + "x": -1723, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b88a13eb-ea1f-48d3-b8e2-86c96689dfe0", + "width": 70, + "x": -1863, + "y": 1614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "beae6790-4e89-45f1-9af5-6f7d18c64f73", + "width": 280, + "x": -1863, + "y": 1264, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "017831b9-5968-43e7-a01f-8e5d2be0e803", + "width": 70, + "x": -1793, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "391959f4-1533-4d32-83c3-56fe8b8dce07", + "width": 70, + "x": -1863, + "y": 1544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7723a3d6-1818-45c7-8add-7f0263a7549a", + "width": 70, + "x": -1863, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "eba27e8b-ed20-4301-8d44-e71b06cdd32b", + "width": 70, + "x": -1863, + "y": 10014, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ac3e9049-31f2-4ec8-b784-b8b7a0879507", + "width": 70, + "x": -1723, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bf689641-ef5d-433d-b984-415f5bfab797", + "width": 70, + "x": -1793, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bea58905-38f0-440f-98f5-1ec8c0692348", + "width": 70, + "x": -1863, + "y": 10084, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f3fdd11-10b2-477a-873a-808812795ff2", + "width": 70, + "x": -1583, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9664611-c1f5-47dc-a72f-f9f1db123d42", + "width": 70, + "x": -1513, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e546beaf-16c0-4251-9cf3-73b17b03b206", + "width": 70, + "x": -1443, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bec63713-3959-4386-be44-e4b3cf5a5803", + "width": 70, + "x": -1653, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c03a5411-c9d0-480a-b6a0-f04953a4ea13", + "width": 70, + "x": -1583, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd2631c6-e5f2-49fa-a6ce-5805b9e69900", + "width": 70, + "x": -1723, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8743649-49a2-4070-80d9-3b83a176b756", + "width": 70, + "x": -1863, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "586fb1d1-1c5d-4621-b8a5-7aa184c8ce4a", + "width": 70, + "x": -1793, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2c5128a-95f7-4947-9779-362cd6e7d8f4", + "width": 70, + "x": -2003, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1682beac-487c-4bce-80e1-0540b1f68a35", + "width": 70, + "x": -1933, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58faab51-dd40-44b0-87fd-6cb7dd4a56bc", + "width": 70, + "x": -2073, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5935cbb0-3d56-4ec3-870d-a8746b353bd1", + "width": 70, + "x": -2213, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1330, + "layer": "", + "name": "sand_1", + "persistentUuid": "b4028859-34fd-4080-b521-e0a7f6d541ff", + "width": 140, + "x": -1513, + "y": 1964, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "25d934ed-eefa-459b-95af-4ef6cabb7323", + "width": 140, + "x": -1513, + "y": 7844, + "zOrder": 12670, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c35cf7e4-4617-404d-a3c2-70d89a56acf7", + "width": 980, + "x": -3473, + "y": 1614, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 350, + "layer": "", + "name": "road_1", + "persistentUuid": "2de82cfd-f125-4782-b57a-4545955a7218", + "width": 70, + "x": -2493, + "y": 1264, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3570, + "layer": "", + "name": "sand_1", + "persistentUuid": "cab12bd5-a40c-4feb-a01d-837db75e1722", + "width": 140, + "x": -2283, + "y": 1194, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d2c9fffe-aff4-40c0-9f51-128c1376741f", + "width": 70, + "x": -2703, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "f57af75b-a55e-4685-ac30-58e6ce83d339", + "width": 1050, + "x": -3543, + "y": 1474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ae8a35a-857a-469a-b832-ae1b2ca665a7", + "width": 140, + "x": -2633, + "y": 1404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a06e899a-a2dc-4802-bc2a-8765932be339", + "width": 70, + "x": -2493, + "y": 1194, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9379555e-c9b9-4129-87d0-293b46a3827f", + "width": 70, + "x": -2493, + "y": 1614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "899061b7-75f0-4249-94c9-4896ed13e035", + "width": 70, + "x": -3543, + "y": 4764, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "59c3c628-96a2-4674-8ece-a1e8e2d16621", + "width": 1330, + "x": -3473, + "y": 4764, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "6b580e9e-bbcd-4331-bbb5-1cb59b77816a", + "width": 1330, + "x": -3473, + "y": 5184, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "1a4cd7f1-754c-4a2c-9a7f-2b7e19a90991", + "width": 1470, + "x": -3543, + "y": 4834, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "d86317cc-2bd6-4632-b218-f4ed34ab2fc4", + "width": 1470, + "x": -3543, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "37e34db3-69de-4a7c-afe2-16e23677cbbd", + "width": 1540, + "x": -3543, + "y": 4974, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road_1", + "persistentUuid": "3f0d249d-e137-46a7-9c88-194275ffc803", + "width": 70, + "x": -3543, + "y": 5254, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3500, + "layer": "", + "name": "road", + "persistentUuid": "085e1038-62fc-465c-8796-df925a321e02", + "width": 140, + "x": -3683, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3220, + "layer": "", + "name": "road_2", + "persistentUuid": "147e963e-a2e3-48df-ad4e-ca58ead0960e", + "width": 70, + "x": -3753, + "y": 5184, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a55502f1-ed89-4f3c-bbd4-d0d5605b55af", + "width": 70, + "x": -3753, + "y": 5114, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df00d79f-fcd4-4c72-8b70-8f0c5b53dbbe", + "width": 70, + "x": -3753, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9f3b38b5-3665-4b72-a8c4-2bbc1bf639da", + "width": 70, + "x": -2143, + "y": 4764, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4f3fd5df-b2d4-4afb-b2a9-4a326ffccb5d", + "width": 70, + "x": -2143, + "y": 5184, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf2f41db-1885-4390-827c-f9169cd21f4d", + "width": 70, + "x": -1863, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0479fffc-4c34-4204-9fc5-cbf72e919516", + "width": 70, + "x": -2003, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6137bbab-b27a-4ff6-8967-a81e7a46ce39", + "width": 70, + "x": -1863, + "y": 4834, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d56779d4-d651-416f-ad31-42afe1554e16", + "width": 70, + "x": -1863, + "y": 5114, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_2", + "persistentUuid": "24706567-a046-4996-a0d3-e50063584bae", + "width": 70, + "x": -1863, + "y": 5184, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road_1", + "persistentUuid": "035dfeff-8e8b-4933-944c-28a2850bca61", + "width": 70, + "x": -2143, + "y": 5254, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3500, + "layer": "", + "name": "road", + "persistentUuid": "e60ffa1e-7bea-4dd5-845b-2f3a93243b5e", + "width": 210, + "x": -2073, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf7c82f2-e564-4202-b9a3-18402f11da95", + "width": 70, + "x": -1863, + "y": 4904, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "304c51c8-ab7f-4c1a-b4ea-8486d0e76e74", + "width": 70, + "x": -1933, + "y": 4974, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aacb9fad-27d9-48c3-b4c9-1b7d6d70e1f3", + "width": 70, + "x": -1863, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50c993c2-7b6b-4d2c-a2cc-6ae3a1041ecb", + "width": 70, + "x": -3753, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "43da6175-c9f8-406e-a898-42b6cff8e206", + "width": 70, + "x": -3753, + "y": 8404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "434c4c73-d1ff-403c-a792-4bd13a36931e", + "width": 70, + "x": -3613, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "07d06c88-9c7d-4636-9063-9fe6c74b7ea6", + "width": 70, + "x": -3753, + "y": 8474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0128fc5f-e648-4729-81c1-08575e7f8001", + "width": 70, + "x": -3683, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "75dfbe6e-24b4-4bca-a703-70cdd557d1af", + "width": 70, + "x": -3543, + "y": 8754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "191accc1-1484-4367-b53b-7fc4983b4109", + "width": 70, + "x": -3543, + "y": 8334, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "60a4d009-182c-47e9-8ec9-739515a13364", + "width": 1330, + "x": -3473, + "y": 8334, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "215ce60e-58eb-41a5-b192-c71aa26050c4", + "width": 1330, + "x": -3473, + "y": 8754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "4fcf978d-e563-41ad-82f1-e407cf2b47ab", + "width": 1470, + "x": -3543, + "y": 8404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "bfe89e69-5588-4cc5-9d64-2af14e100f0b", + "width": 1470, + "x": -3543, + "y": 8614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "8073a041-1db8-4bdf-958d-ca4fe5152f4a", + "width": 1540, + "x": -3543, + "y": 8544, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94004759-5587-481b-b89e-f1b4c0d484de", + "width": 70, + "x": -3753, + "y": 8684, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "671ca868-d859-461f-867d-c612e97b2424", + "width": 70, + "x": -3753, + "y": 8614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "48f1bc00-df7b-4a10-a40b-f6f3728d50a7", + "width": 70, + "x": -2143, + "y": 8334, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "631e3553-0f38-452d-a405-8bad5fea28e2", + "width": 70, + "x": -2143, + "y": 8754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcb4100d-2aa4-4c13-a092-4aef27395cf4", + "width": 70, + "x": -1863, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "00181eae-afe0-437d-96cd-1043e502b443", + "width": 70, + "x": -2003, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06c87c21-716e-4c28-ae4a-ef9c9aa4eec4", + "width": 70, + "x": -1863, + "y": 8404, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50b13a00-1d68-4b8b-85ef-ee297b23bfbe", + "width": 70, + "x": -1863, + "y": 8684, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ffd67f2-ea2a-4bb3-9c0f-12b4681577a5", + "width": 70, + "x": -1863, + "y": 8474, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fcffbc9d-40e0-490b-be60-4ddedded0017", + "width": 70, + "x": -1933, + "y": 8544, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "58bba585-ed1e-4ea2-80b6-ed5ed9cbd09f", + "width": 70, + "x": -1863, + "y": 8614, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 7630, + "layer": "", + "name": "road_1", + "persistentUuid": "1ad9cc40-48eb-49da-a422-046433f42cfc", + "width": 70, + "x": -2143, + "y": 8824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "name": "road_2", + "persistentUuid": "e26001a6-ed2a-4e8c-9dce-3f20769d6e65", + "width": 70, + "x": -1863, + "y": 8754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "36a1eff3-4aac-4e3e-9fdd-d09b1497cade", + "width": 70, + "x": -3543, + "y": 10854, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4b6dadc7-b039-4d3e-bec3-d8332f6b9200", + "width": 70, + "x": -3753, + "y": 10644, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "3e745ff5-c997-4d22-8767-a1f908414f5c", + "width": 350, + "x": -3893, + "y": 10854, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "3e1a225a-5d49-4b92-8fe0-518a9d190576", + "width": 70, + "x": -3753, + "y": 10714, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "a590f72a-a6b1-4055-b3c0-e5e3fc6c5412", + "width": 4130, + "x": -4033, + "y": 1054, + "zOrder": 12658, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "sand_1", + "persistentUuid": "163ebd13-cfc1-49e3-bd0e-eff9a454dda6", + "width": 140, + "x": 867, + "y": 144, + "zOrder": 12661, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f20945b9-96fb-4aea-afc6-5cac0c565f3d", + "width": 70, + "x": 9547, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "232d9e83-71b0-4372-add0-adb554ba1ec3", + "width": 70, + "x": 9477, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "72f962ca-cc77-4b3c-8a1a-09296f9385a7", + "width": 70, + "x": 9337, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a27f937-4392-4f61-9c21-fa5771c65d41", + "width": 70, + "x": 9407, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6650db23-6509-401b-8a4e-2fc7f9e6a02f", + "width": 70, + "x": 9197, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c22714e8-6a71-49a9-aa16-73fb73e1eec4", + "width": 70, + "x": 9267, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b80404aa-7092-4841-82d0-d2a7ef083827", + "width": 70, + "x": 9127, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d850f639-758d-4f0e-9187-21f5af177da2", + "width": 70, + "x": 8987, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b5588d24-1a5b-4e4e-ad27-30b3d8e61525", + "width": 70, + "x": 9057, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7dca533d-9733-45c7-bc62-97ba6a2c6f06", + "width": 70, + "x": 8847, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e61e022-4ccf-46b1-b4b1-a9df592eec65", + "width": 70, + "x": 8917, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a77eb368-f4b5-47de-83d6-b0528942d407", + "width": 70, + "x": 8777, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9ce1d84-075a-42dd-abd9-564dfaa7f13d", + "width": 70, + "x": 8637, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cdb2f8b1-f4c7-49fb-8231-ab728bafe3cf", + "width": 70, + "x": 8707, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20867746-727e-4231-a286-d3cb4d60ad0e", + "width": 70, + "x": 8497, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e233dbc5-f576-44fa-bb24-9cd0dff3a7f1", + "width": 70, + "x": 8567, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c56ed119-3725-41fd-9dbc-a63f2653c5c4", + "width": 70, + "x": 8427, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da873923-976e-4496-9fd5-114e62d0bcae", + "width": 70, + "x": 8357, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "a4b85a63-6dd0-41f7-89cc-cf5d70a777f5", + "width": 1820, + "x": -4033, + "y": 74, + "zOrder": 12672, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70115532-3ba9-4017-bbd8-71f9123d46f4", + "width": 70, + "x": -2633, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b02f84d6-aadd-4540-9ced-2020ff4e8169", + "width": 70, + "x": -2563, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50371c27-4376-496b-af49-3048ceb73ae8", + "width": 70, + "x": -2773, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65fc4c91-4dd7-444e-9df4-717f721617d9", + "width": 70, + "x": -2703, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd809371-b28b-4ac9-91b2-22d4f5d6867f", + "width": 70, + "x": -2843, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ffebd31e-016a-4c94-acfc-43cfd591f6c8", + "width": 70, + "x": -2983, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "939e00d7-ec1c-4512-883c-bc3bddf9a51c", + "width": 70, + "x": -2913, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "897ca8b2-6553-4317-a31f-8d218b24fbea", + "width": 70, + "x": -3123, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b0718e4-cfa6-4afd-8a81-0bbf0dff2401", + "width": 70, + "x": -3053, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "409be221-1c28-4bf0-8180-1108b9b3b9bd", + "width": 70, + "x": -3193, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b08ed0b2-d1b8-457e-a297-28498e73f1f9", + "width": 70, + "x": -2283, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8485f2f0-bf6e-4f27-8452-9d783838bdbd", + "width": 70, + "x": -2143, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f58ef22-40bd-4c16-929d-43e74f292475", + "width": 70, + "x": -2353, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c06303c6-8400-43f8-9eca-57561016fac6", + "width": 70, + "x": -2423, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f49b908d-0e3e-4376-b0e2-7dd2b1daf606", + "width": 70, + "x": -2493, + "y": 4, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "637f512b-a26d-409f-b828-6a0f4f5c47f9", + "width": 70, + "x": -4103, + "y": 144, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "645d071c-6e02-431f-ac7c-9e7abeb5a8cc", + "width": 70, + "x": -4103, + "y": 214, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3649f06e-70b2-4899-9356-c47b6fd1bace", + "width": 70, + "x": -4103, + "y": 284, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd1c3627-1c84-4008-ac0a-f239b1773a7a", + "width": 70, + "x": -4103, + "y": 354, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "930ad5c2-7847-416f-a213-4c3a92e41fde", + "width": 70, + "x": -4103, + "y": 424, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bb7bd76f-24f8-4f3c-a183-74f39d3ac29a", + "width": 70, + "x": -4103, + "y": 494, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45995e66-8ebd-4fcb-a551-02d9d2fb39c4", + "width": 70, + "x": -4103, + "y": 564, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cfdd29c9-2824-495a-a2c7-f9ba20568cc1", + "width": 70, + "x": -4103, + "y": 634, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e1fd632-397e-4e64-a5c8-dd0335dacbe1", + "width": 70, + "x": -4103, + "y": 704, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "267626c9-f170-4cb5-a941-5f7b0e9c67cf", + "width": 70, + "x": -4103, + "y": 774, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48cfb088-fa6b-4b91-8257-20ba33ad0bf9", + "width": 70, + "x": -4103, + "y": 844, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ae3dd6e-85b4-462e-8be6-9bf0b792aca2", + "width": 70, + "x": -4103, + "y": 914, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6790, + "layer": "", + "name": "sand_2", + "persistentUuid": "1316aa7a-c6df-433f-bb8e-075ef18599f1", + "width": 1820, + "x": -6133, + "y": 1194, + "zOrder": 12673, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "beach_sand_1", + "persistentUuid": "240ea5c7-0aee-4af8-80f6-9172d5b01828", + "width": 1820, + "x": -6133, + "y": 1124, + "zOrder": 12674, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "88c1bcd1-1c0f-47be-b81d-3309ea70881a", + "width": 70, + "x": -5363, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ae82d45-1d84-4211-a6a0-4e498847b81a", + "width": 70, + "x": -5153, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "102841b5-ad3a-403d-817e-78cc297e2b35", + "width": 70, + "x": -5223, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "514718b0-60aa-4aae-9999-a60d8ef209c9", + "width": 70, + "x": -5293, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6715f9b-bd17-4ce4-8c3b-cc62e32b65bc", + "width": 70, + "x": -5083, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1e8dd57-35ca-4e0c-aba9-2891f65fef39", + "width": 70, + "x": -4873, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cac9221a-9c1a-4a8f-aab4-d9dee2d2b3c4", + "width": 70, + "x": -4943, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "10d0d587-e92f-45c6-a211-fef82667ba4f", + "width": 70, + "x": -5013, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea469906-5eb2-4e86-9fa4-c67e59699739", + "width": 70, + "x": -4663, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f5c04a4-1a7b-4076-81fb-1c2eea9eff02", + "width": 70, + "x": -4733, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f55887cd-2807-410c-ae18-7c9a6c1cafc4", + "width": 70, + "x": -4803, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 9800, + "layer": "", + "name": "sand_1", + "persistentUuid": "1a400b85-f1d5-4242-bcf5-b040f30c652c", + "width": 140, + "x": -4103, + "y": 1124, + "zOrder": 12675, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "966c4533-3015-4a81-bbc6-362f51187432", + "width": 1050, + "x": -3333, + "y": 4624, + "zOrder": 12676, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "99c80e92-ee04-4064-ae4e-dd6a558eaa25", + "width": 1050, + "x": -3333, + "y": 1684, + "zOrder": 12676, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "7b8fa4ee-78cf-4782-b6c1-97c63edfcd68", + "width": 1330, + "x": -3473, + "y": 5254, + "zOrder": 12676, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "dfe74314-13b6-41bc-b31d-c75ae7fe7097", + "width": 1330, + "x": -3473, + "y": 8194, + "zOrder": 12676, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "sand_1", + "persistentUuid": "5649fd36-d9da-4e1d-9939-a5131e1b2c81", + "width": 140, + "x": -2283, + "y": 5394, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "sand_1", + "persistentUuid": "8db1b349-5331-47f4-95b6-2a9584c4a28e", + "width": 140, + "x": -3473, + "y": 5394, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1680, + "layer": "", + "name": "sand_1", + "persistentUuid": "f0c8f70c-9a94-4f0f-9c9f-ad747d4164f0", + "width": 140, + "x": -2283, + "y": 8824, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "0d2f9d04-aa6a-4dd5-9652-1d7b4c87b360", + "width": 1190, + "x": -3473, + "y": 8824, + "zOrder": 12676, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1960, + "layer": "", + "name": "sand_1", + "persistentUuid": "2dbeb2b7-3b26-4471-8ba7-36845c743a79", + "width": 140, + "x": -3473, + "y": 8964, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1960, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "a9b56d03-2171-4e10-9fbb-4323d65bda5e", + "width": 630, + "x": -4733, + "y": 7984, + "zOrder": 20, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3631bb2b-63b9-4ae4-86d6-aaaaeb5489ca", + "width": 70, + "x": -5363, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1cc4c07-7338-47e0-b4f5-90330d17d2d6", + "width": 70, + "x": -5293, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4ebe582-b0ed-4ac1-87c7-005e91ccbf5c", + "width": 70, + "x": -4803, + "y": 7984, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7b0263d-51c3-4523-b472-8ba6d299512b", + "width": 70, + "x": -4803, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5c78f775-7bb8-4f9b-bcb6-d14e0bc03667", + "width": 70, + "x": -4803, + "y": 8054, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd07f725-eb4a-4e5c-a335-f06488329032", + "width": 70, + "x": -4803, + "y": 8124, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1beb433-37b3-4faf-ae48-6a3f5cd8f7ec", + "width": 70, + "x": -4803, + "y": 8194, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "95619314-8856-4a82-bd2b-0309bdcdf2f7", + "width": 70, + "x": -4803, + "y": 8264, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4cfdbb50-f59b-4e63-b92a-dc5ab28de3ff", + "width": 70, + "x": -4803, + "y": 8334, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdb3cefe-add4-4217-955a-ce5165e29154", + "width": 70, + "x": -4803, + "y": 8404, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "547adfe5-56e3-4794-9795-c684e2c61db2", + "width": 70, + "x": -4803, + "y": 8474, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a36c55a1-f2d9-4871-ac48-a74cef2b8e3b", + "width": 70, + "x": -4803, + "y": 8544, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a4ff531-b074-4a87-ab12-c87a1c427388", + "width": 70, + "x": -4803, + "y": 8614, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0871f6e9-e7ba-42b4-a2cd-fcaf498fd59e", + "width": 70, + "x": -4803, + "y": 8684, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91eef4d4-ddd7-44ee-a137-44d5906c5aef", + "width": 70, + "x": -4803, + "y": 8754, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "320d1f33-f2c9-4e4c-bdc4-bf3f100f9127", + "width": 70, + "x": -4803, + "y": 8824, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d14bafee-04f6-402a-9a65-6b96ba165cc6", + "width": 70, + "x": -4803, + "y": 8894, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "81fb5cc7-4bcf-4307-a88e-e3cfdab74322", + "width": 70, + "x": -4803, + "y": 8964, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3dbbaafc-45e0-4994-99a5-f638a0e82772", + "width": 70, + "x": -4803, + "y": 9034, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "81ee3b3b-3a69-4fd1-ab66-4abb3595fbdb", + "width": 70, + "x": -4803, + "y": 9104, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37f40282-df39-4604-9331-b1dc263b5a5c", + "width": 70, + "x": -4803, + "y": 9174, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df16c97e-b7a5-4642-b0dc-c901ab6eb621", + "width": 70, + "x": -4803, + "y": 9244, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b7f64ca-def6-48e3-b51d-56d630b60944", + "width": 70, + "x": -4803, + "y": 9314, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cca7f200-b2a6-4086-bda6-30f5c5ae6e93", + "width": 70, + "x": -4803, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13f3caaa-5ea3-46dd-bd29-a40df8cd7a15", + "width": 70, + "x": -4803, + "y": 9454, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "181d2724-b050-42e1-a607-c9c0a5bcb147", + "width": 70, + "x": -4803, + "y": 9524, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a71bb636-b944-4031-8a07-3d0e8395aea6", + "width": 70, + "x": -4803, + "y": 9594, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b6125df-db8e-4191-a4b7-7bd643799ab1", + "width": 70, + "x": -4803, + "y": 9664, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb2fe9ff-9c84-49d7-a5a5-41a12ff22130", + "width": 70, + "x": -4803, + "y": 9734, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b05b97e-b139-4066-8974-698ada9f67ec", + "width": 70, + "x": -4803, + "y": 9804, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf010df7-4620-43cf-bd3d-481748b4e86f", + "width": 70, + "x": -4803, + "y": 9874, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f590132-b5eb-4c9f-9a5d-b72dcf999bda", + "width": 70, + "x": -4593, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ee117d7-b6de-413c-a577-13b647bd1d67", + "width": 70, + "x": -4523, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d28d7525-cec0-4177-adf5-2591ff8ed7a4", + "width": 70, + "x": -4733, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "939225cf-e0b1-4acc-8052-a942898f7848", + "width": 70, + "x": -4663, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "f57c07de-8efd-4391-9d5a-08baa55ba9f4", + "width": 1050, + "x": -3333, + "y": 5394, + "zOrder": 12677, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "fbe23c2a-3a87-4602-ad1f-9e204f510aea", + "width": 1050, + "x": -3333, + "y": 1824, + "zOrder": 12678, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "Water", + "persistentUuid": "8bb2f9bb-7ac9-43ae-b3e0-ae4a76a4900d", + "width": 1120, + "x": -4523, + "y": 11414, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "ccdc71b5-5c69-4c10-827a-24c60aa4a0fb", + "width": 770, + "x": -4103, + "y": 10924, + "zOrder": 12680, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f474106-0d6d-4c3d-8ca9-afb219b2c751", + "width": 70, + "x": -4453, + "y": 9944, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1120, + "layer": "", + "name": "beach_sand_1", + "persistentUuid": "a09a8648-bcf8-48a6-80bb-940490adf492", + "width": 70, + "x": -4173, + "y": 9944, + "zOrder": 12681, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "sand_2", + "persistentUuid": "ac56231d-854c-479e-85a6-5a7b7407115a", + "width": 210, + "x": -4383, + "y": 10014, + "zOrder": 12682, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_2", + "persistentUuid": "327ee04c-cb44-40f7-a3d0-b6163abe3224", + "width": 210, + "x": -4383, + "y": 9944, + "zOrder": 12683, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "f8070c05-c209-4aa1-8ed3-73f80b3ba70e", + "width": 70, + "x": -4453, + "y": 10014, + "zOrder": 12684, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17058538-0fd1-487b-ad0d-d56eb4de9a7a", + "width": 70, + "x": -4453, + "y": 10364, + "zOrder": 33, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6bb3425-2bd5-45ee-a712-5c51be45a045", + "width": 70, + "x": -4523, + "y": 10714, + "zOrder": 33, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5cbd88ec-5b96-47ca-9c62-c9a6eca0d8f6", + "width": 70, + "x": -4383, + "y": 10364, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c34ecca-a554-45b1-a651-6c002497e556", + "width": 70, + "x": -4383, + "y": 10714, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28592ec2-1ffa-48ba-b313-69fcf2e4205d", + "width": 70, + "x": -4453, + "y": 10714, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "44bf7fb6-e65e-41b4-86c0-4a3bd88d744d", + "width": 70, + "x": -4313, + "y": 10434, + "zOrder": 12684, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "sand_2", + "persistentUuid": "5422e729-c35f-40cb-8286-ab98c4409f3a", + "width": 70, + "x": -4243, + "y": 10364, + "zOrder": 12685, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "605c71ab-8575-42cc-8388-c06462ac1ffc", + "width": 70, + "x": -4313, + "y": 10364, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45a0dcb8-9f90-45ff-a3d0-9ff4a7e0d018", + "width": 70, + "x": -4313, + "y": 10714, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f618cd6f-231c-48f7-b0af-46c3ca3e4fee", + "width": 70, + "x": -4523, + "y": 11344, + "zOrder": 33, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "9d51af82-6518-40b6-98b5-9f3541c70a79", + "width": 70, + "x": -4523, + "y": 10784, + "zOrder": 12684, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fbbc90b-c4ae-4400-a32a-2e75e0812f3c", + "width": 70, + "x": -4453, + "y": 11344, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34832527-36d8-40d6-961b-8e9f732745a2", + "width": 70, + "x": -4383, + "y": 11344, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54c8558f-d95e-40d4-a916-a9eb274fa9f9", + "width": 70, + "x": -4313, + "y": 11344, + "zOrder": 36, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9ff8a1a-a2d7-4eb0-b1b4-3595a09d5948", + "width": 70, + "x": -4243, + "y": 11344, + "zOrder": 67, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39431874-46f2-45c4-b5b4-e20aa163c567", + "width": 70, + "x": -4173, + "y": 11344, + "zOrder": 67, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "75e21928-5168-48dc-b08a-3dd0c18e8454", + "width": 70, + "x": -4103, + "y": 11344, + "zOrder": 65976, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "938f4f58-2ae4-4451-b768-dad9e15ef44c", + "width": 70, + "x": -3473, + "y": 11344, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96e232ac-b567-47dd-971c-32a798e1595b", + "width": 70, + "x": -4033, + "y": 11344, + "zOrder": 65976, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "beach_sand_1", + "persistentUuid": "93c60d7d-e8ad-4c36-a528-d5b557c06f7a", + "width": 280, + "x": -4453, + "y": 10784, + "zOrder": 65977, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d16b10ed-63b2-465f-a212-e9a39d5660b5", + "width": 70, + "x": -3963, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65e30093-105e-4b8d-b301-4acaf96bec79", + "width": 70, + "x": -3893, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5048c06c-4c93-4809-88b0-f82f22d4e596", + "width": 70, + "x": -3823, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14b39028-7140-457b-bf83-e37232b713b0", + "width": 70, + "x": -3753, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "258fa10b-af03-4d8a-82b9-434204b9a848", + "width": 70, + "x": -3683, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a55cf00-9394-4fe1-b59a-038750ab6cd3", + "width": 70, + "x": -3613, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a8c5b43-1ccd-4a17-a78b-da86db708fa7", + "width": 70, + "x": -3543, + "y": 11344, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "1cacb6db-8ae4-41cb-861e-9679d39c26e8", + "width": 70, + "x": -3473, + "y": 11274, + "zOrder": 12684, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9fb90bdc-8f1e-466e-be28-96a8a1fae31d", + "width": 70, + "x": -3473, + "y": 11204, + "zOrder": 12643479, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d81a1be-d977-46aa-a2b6-84dc5a6f99d2", + "width": 70, + "x": -3403, + "y": 11204, + "zOrder": 65976, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2537561b-d655-4bd6-8591-62588c8ad171", + "width": 70, + "x": -3333, + "y": 11204, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2c661e8-d676-4c0e-a3d0-81890536e15a", + "width": 70, + "x": -3263, + "y": 11204, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20ab0382-2480-4384-8abd-2d34b2e70f62", + "width": 70, + "x": -3193, + "y": 11204, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5693d4b6-2c4f-4582-a2db-ba652eed9145", + "width": 70, + "x": -3123, + "y": 11204, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92334a25-b463-4011-bd5f-69e2854119d3", + "width": 70, + "x": -3053, + "y": 11204, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "beach_sand_1", + "persistentUuid": "7ed48d51-e03f-4df4-961b-8c43248bf3f6", + "width": 700, + "x": -4173, + "y": 11064, + "zOrder": 12643480, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 840, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "66781acc-f3ac-4557-a558-445994ef1142", + "width": 70, + "x": -2983, + "y": 10364, + "zOrder": 12684, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b737d38-507f-455d-9f97-250b9013c6f7", + "width": 70, + "x": -2983, + "y": 11204, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 700, + "layer": "", + "name": "sand_2", + "persistentUuid": "ddb2c7d3-e810-4500-a5a3-db28bc27267b", + "width": 350, + "x": -3333, + "y": 10364, + "zOrder": 12643481, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_2", + "persistentUuid": "1a241372-fbe1-4e47-834d-665f9c80eb3d", + "width": 490, + "x": -3473, + "y": 11064, + "zOrder": 12643482, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee997e1a-ebfd-4bb8-8200-eb690c675426", + "width": 70, + "x": -2983, + "y": 10294, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6688cd10-4df8-4250-9106-9b719f0fd7fd", + "width": 70, + "x": -3123, + "y": 10154, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57f9a07c-e610-4453-a3bf-49ae5b86fdeb", + "width": 70, + "x": -3263, + "y": 9944, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "181654ad-4c95-49f7-9638-f87246caced5", + "width": 70, + "x": -3333, + "y": 9734, + "zOrder": 21580, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "614c502d-0a0e-4fc1-8fdc-5fde2f2fffb1", + "width": 70, + "x": -3053, + "y": 10294, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "40e9135d-c171-4390-aa8e-258280897ac6", + "width": 70, + "x": -3123, + "y": 10224, + "zOrder": 12643483, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 140, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "7ef80ddf-2124-4eaf-b75a-f6754e872e18", + "width": 70, + "x": -3263, + "y": 10014, + "zOrder": 12643483, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 140, + "layer": "", + "name": "beach_sand_2", + "persistentUuid": "72e28f69-b403-457a-a009-9d5c0266399c", + "width": 70, + "x": -3333, + "y": 9804, + "zOrder": 12643483, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "075cc0eb-95db-485b-aded-86dc3fe0a8cd", + "width": 70, + "x": -3193, + "y": 10154, + "zOrder": 243468, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "sand_2", + "persistentUuid": "3430d648-93e9-4511-b0e7-99caa0cff65d", + "width": 70, + "x": -3333, + "y": 10014, + "zOrder": 12685, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_2", + "persistentUuid": "a7ada9ac-5692-40cf-bb10-2f06068b7b25", + "width": 70, + "x": -3263, + "y": 10224, + "zOrder": 12685, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_2", + "persistentUuid": "98b6d1a3-2d53-4a40-8cd5-8f226cff8aed", + "width": 70, + "x": -3193, + "y": 10224, + "zOrder": 12685, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce5cd6b3-23b8-4ff4-abfb-76280e4da01c", + "width": 70, + "x": -3333, + "y": 9944, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "60e00e34-5d70-4e5b-b176-7889d0992de0", + "width": 70, + "x": -3263, + "y": 10154, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "507abfbf-9f53-40d9-aa91-a984ec0874f2", + "width": 70, + "x": -3123, + "y": 10294, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "93bec4cd-f5d8-4652-b481-418ce1188d16", + "width": 1050, + "x": -3333, + "y": 8964, + "zOrder": 12643484, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2325ff3-1300-4d57-8596-a81759a75227", + "width": 70, + "x": -2423, + "y": 9664, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "40e93dac-415b-4936-8538-67459105e268", + "width": 70, + "x": -2563, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e004ff19-2e94-4c25-ae07-f5bad7d0e4e4", + "width": 70, + "x": -2493, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80df6f87-5b93-4a34-ac62-6ac0597beb00", + "width": 70, + "x": -2703, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c461fbe5-6806-4eca-83d2-d73fc56ee239", + "width": 70, + "x": -2633, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5aef827c-83ff-44c2-ae25-abbc99a106a0", + "width": 70, + "x": -2843, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5dc1f2e-31ea-4e4c-b86f-89ccb64cc7f7", + "width": 70, + "x": -2773, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73fe0730-5da0-46a5-b5d3-374b62b1a3c4", + "width": 70, + "x": -2983, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac5a6e5f-4451-4a5a-ab4a-5cefd0ff7289", + "width": 70, + "x": -2913, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ab083cf7-89f4-42ad-8dee-588279f37d8a", + "width": 70, + "x": -3123, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b854ffdd-309a-43cb-942d-ee24e0910907", + "width": 70, + "x": -3053, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "653b3de7-02ef-4023-8312-86a395526e67", + "width": 70, + "x": -3193, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "49bc90d1-fe9f-4490-b3a6-070ef31b29b5", + "width": 70, + "x": -3263, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4cb3e0c-9bba-4c3c-8ec0-ca6ef11e1713", + "width": 70, + "x": -2423, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74db2a05-3e23-480d-8e39-9fb24b01a9e4", + "width": 70, + "x": -2423, + "y": 9734, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c80b4227-ade4-41ff-bd68-12ff0806d70f", + "width": 70, + "x": -2423, + "y": 9804, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d87d4f6-c764-42db-a980-7c22d379501e", + "width": 70, + "x": -2423, + "y": 9874, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69f37d2f-3294-4846-8bd0-b3d20522daaa", + "width": 70, + "x": -2423, + "y": 9944, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ba9eb0f-eab0-4003-85d6-c86f96c898ad", + "width": 70, + "x": -2423, + "y": 10014, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59b9af51-125f-4166-8582-65ab04f593ee", + "width": 70, + "x": -2423, + "y": 10084, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa076c8d-6588-44a9-aa96-924a00de0285", + "width": 70, + "x": -2423, + "y": 10154, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1fd1fcf-d882-4d9d-adfc-3098763d4ba7", + "width": 70, + "x": -2423, + "y": 10224, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56b8d005-cacc-4a91-b389-6d1f8400f12e", + "width": 70, + "x": -2423, + "y": 10294, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ab0e686-c22d-4860-8cfc-4fa498f98176", + "width": 70, + "x": -2353, + "y": 10364, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58bf645f-fca0-40b6-a888-3e33624e7b4c", + "width": 70, + "x": -2353, + "y": 10294, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "c68d900f-c82c-463a-80ef-23c5bbd3944f", + "width": 70, + "x": -2353, + "y": 9384, + "zOrder": 12643485, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b7af1f8-98ed-49ae-9bd7-0ce2fe6a361d", + "width": 70, + "x": -2353, + "y": 10434, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8ac001c0-eba8-491c-b3b6-aa9e1da115bf", + "width": 70, + "x": -3333, + "y": 9384, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9155ddc1-bd7c-45d5-b9fa-446b174bdfeb", + "width": 70, + "x": -3333, + "y": 9454, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "Water", + "persistentUuid": "0a37a548-8f5d-4bed-9842-22d258c08c62", + "width": 840, + "x": -3263, + "y": 9454, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 9800, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "17529b7b-1467-4c33-a41d-a9a16501afc4", + "width": 1260, + "x": 8497, + "y": 74, + "zOrder": 12643486, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04e90312-343b-4df7-995d-dad645272344", + "width": 70, + "x": -3333, + "y": 9524, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6266d2e-1416-4b62-84b6-d8753e00c2c2", + "width": 70, + "x": -3333, + "y": 9594, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6860, + "layer": "", + "name": "sand_1", + "persistentUuid": "4e950bc8-a2fd-49e0-a434-d7df8b979df0", + "width": 210, + "x": -4313, + "y": 1124, + "zOrder": 12643487, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "sand_1", + "persistentUuid": "d2c49d09-ea19-42de-9712-00c32838e6ff", + "width": 140, + "x": -2423, + "y": 1194, + "zOrder": 12643488, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef0e2ecc-da2b-42fd-8ee9-c53bf0b2e4f9", + "width": 70, + "x": -6133, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59983644-3626-4dae-8221-5228cb6c776a", + "width": 70, + "x": -6063, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9b28ca89-470a-4f91-b30b-5513b81cdb5f", + "width": 70, + "x": -5853, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bec082d-4594-4d0d-81c9-37335011b5c4", + "width": 70, + "x": -5923, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1020db0d-5e67-4b27-a8a4-4c8b983cec01", + "width": 70, + "x": -5993, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05400033-d3f3-48c7-982e-be017f90bb73", + "width": 70, + "x": -5783, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac597da9-2467-4c65-a9d5-0c301810845d", + "width": 70, + "x": -5713, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16c1f5b1-a79c-4373-9662-a51b49614b05", + "width": 70, + "x": -5643, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae919977-2d48-4667-a059-681870ed740c", + "width": 70, + "x": -5573, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12548878-2054-4c6d-a42c-3fbe513abdd2", + "width": 70, + "x": -5503, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91f60fe7-56e4-49d4-a178-1e1a078711fd", + "width": 70, + "x": -5923, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de11f9b0-87a2-4593-891a-edba840dc063", + "width": 70, + "x": -5713, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed6ba9f2-6d44-4a11-99e6-9c3e0594d93e", + "width": 70, + "x": -5643, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3eb810fe-519c-41ea-a350-3f17eba2096a", + "width": 70, + "x": -5573, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fcfb775-e8d8-4437-be6a-31d2877e8efa", + "width": 70, + "x": -5503, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea461022-f54a-4dc4-9305-f9803baf034f", + "width": 70, + "x": -5853, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1a40b76-3746-481d-861a-95d844d1ac71", + "width": 70, + "x": -5783, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "275bd4e7-7b1c-4160-bac6-ad891c91287a", + "width": 70, + "x": -6133, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96e2eeb3-07ec-45c8-bd22-be013523e30d", + "width": 70, + "x": -6063, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "765294d7-5f22-457d-b228-19b6272b6696", + "width": 70, + "x": -5993, + "y": 7984, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1750, + "layer": "", + "name": "road_1", + "persistentUuid": "d4055d0e-d9d1-429c-ae24-96bde531abaf", + "width": 70, + "x": 6537, + "y": 2174, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "9c1c3f1c-c31f-4a42-bc77-d3bb20e25c45", + "width": 70, + "x": 6257, + "y": 2454, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "7f98d6ad-c591-4970-b8cf-42964f3070f8", + "width": 420, + "x": 6117, + "y": 2104, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 4970, + "layer": "", + "name": "road", + "persistentUuid": "5a06266d-10e7-4d3d-b3b5-b161a5abeddd", + "width": 70, + "x": 6467, + "y": 2174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 4970, + "layer": "", + "name": "road", + "persistentUuid": "34eedf9d-6967-4101-b5c4-dd344b54679f", + "width": 140, + "x": 6327, + "y": 2174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "79c52b4c-a97e-40e6-ba0a-5a5bd6faebb2", + "width": 70, + "x": 6537, + "y": 2104, + "zOrder": 14, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "road_1", + "persistentUuid": "9a752d7a-d9ad-45f4-9c10-942ac1a70cab", + "width": 70, + "x": 5767, + "y": 1824, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 280, + "layer": "", + "name": "road_1", + "persistentUuid": "f1b4fef2-edc2-4c72-8461-7651373fdf72", + "width": 70, + "x": 6047, + "y": 1824, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9c52333d-c669-469a-b5a0-82760dfbba0b", + "width": 70, + "x": 6047, + "y": 2104, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "road", + "persistentUuid": "d81af085-526c-4a6a-a075-06c2f90203dd", + "width": 140, + "x": 5837, + "y": 1754, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "road", + "persistentUuid": "15c5b827-29ef-4dd7-a4b3-f1c48148951c", + "width": 70, + "x": 5977, + "y": 1754, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9b1c2915-41d7-46fb-8098-e1cd6a8f9416", + "width": 70, + "x": 5767, + "y": 2384, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "4858da6b-8fd3-4a16-a5de-689ed5883587", + "width": 420, + "x": 5837, + "y": 2384, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "36398f49-8ada-49b2-9d77-72d60482ddd7", + "width": 70, + "x": 6257, + "y": 2384, + "zOrder": 14, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "49fb6b2b-b64a-42eb-9d69-c47ce8701aae", + "width": 490, + "x": 5837, + "y": 2314, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "9e37c329-c976-4ca3-b66e-218d91360432", + "width": 490, + "x": 5837, + "y": 2174, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "78bee018-7c81-45dc-a158-2f5dc42af8ee", + "width": 1610, + "x": 6117, + "y": 1754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "47558b15-939a-4be1-977a-c17f8f3eb1a7", + "width": 70, + "x": 6047, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "621fe1e6-d3c4-4096-9205-dd7b8f4c6216", + "width": 70, + "x": 5767, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "c61b25cd-3809-41fa-88cd-cfcba8d07d08", + "width": 1610, + "x": 6117, + "y": 1824, + "zOrder": 12664, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "b4b44106-095a-4af9-9db5-5f6dbb0c8e03", + "width": 1120, + "x": 6607, + "y": 7074, + "zOrder": 12643494, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ed427388-0d4d-4692-b504-813eefa04660", + "width": 70, + "x": 6257, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4723aead-71f9-4ba2-a4e4-78668055ee17", + "width": 70, + "x": 6537, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "04a262c5-18d8-420e-bdc9-b2ea2b92157e", + "width": 1330, + "x": 4927, + "y": 6934, + "zOrder": 12643495, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "64f652b3-97e3-44b0-80af-e87472c43aa7", + "width": 980, + "x": 6607, + "y": 6934, + "zOrder": 12643495, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "806a9341-4fde-482a-b0cd-0393af8fde8a", + "width": 1330, + "x": 4927, + "y": 7074, + "zOrder": 12643496, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "34498c9f-5b6d-4e0d-bec2-ebc5ec66d3ee", + "width": 70, + "x": 4437, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "34959d15-419b-444f-9eb7-1990509d8e61", + "width": 70, + "x": 4857, + "y": 7074, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2d53dce6-0170-42ea-a858-f6225bb511fe", + "width": 70, + "x": 4647, + "y": 7354, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "17cf9f3d-c22b-4a7b-895c-d1ff512b7588", + "width": 70, + "x": 4787, + "y": 7354, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "18cdc99d-275b-4d0e-b599-ced970350a6e", + "width": 70, + "x": 4647, + "y": 7214, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7fdc5798-42d8-40d1-8de1-e68c7875587d", + "width": 70, + "x": 4507, + "y": 7354, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f416c022-e6e1-474c-bc14-0a20035ddc0a", + "width": 70, + "x": 4647, + "y": 7284, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ffd47b51-39d5-48ea-bbc6-153020fab509", + "width": 70, + "x": 4717, + "y": 7354, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7c348261-c9ca-4490-b609-347cb7171a4a", + "width": 70, + "x": 4577, + "y": 7354, + "zOrder": 12643497, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1960, + "layer": "", + "name": "sand_1", + "persistentUuid": "a208d895-4d04-4424-8d8c-c7d0cdb19d6c", + "width": 70, + "x": 4927, + "y": 1964, + "zOrder": 12664, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "7c008efa-10d9-461d-b688-cfaef796fd93", + "width": 70, + "x": 4367, + "y": 1824, + "zOrder": 12664, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "1c9f0ed6-8da6-4030-8935-a50fc5b33abb", + "width": 280, + "x": -4313, + "y": 1054, + "zOrder": 12643498, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ddc0ff1f-2a01-4e67-8706-9f2c82b48aa1", + "width": 70, + "x": -4383, + "y": 984, + "zOrder": 12656, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "29230ec4-df48-425b-b248-5ffbc453cb2e", + "width": 70, + "x": -4383, + "y": 1054, + "zOrder": 12655, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "Water", + "persistentUuid": "06397ef4-b7a8-4a11-9b98-cfcf1e557f88", + "width": 770, + "x": -3193, + "y": 9944, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "Water", + "persistentUuid": "b31a1622-1006-41b4-bf4c-4c3a60195846", + "width": 700, + "x": -3053, + "y": 10154, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 700, + "layer": "", + "name": "Water", + "persistentUuid": "af212e95-bb26-43e2-8454-26c4232cb6e9", + "width": 70, + "x": -4523, + "y": 10014, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "Water", + "persistentUuid": "d211bd24-9149-4fd8-a946-ea629360c229", + "width": 140, + "x": -4453, + "y": 10434, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "Water", + "persistentUuid": "ecec3a8b-09ff-41de-9cd3-cfa659d943b0", + "width": 1820, + "x": -6203, + "y": 4, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "Water", + "persistentUuid": "0a833f35-1655-4999-9cba-e3cc3f82e6ad", + "width": 280, + "x": -4383, + "y": 4, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "e52b787a-81ad-44f4-b1ca-53c0cdc1cd4d", + "width": 4270, + "x": -4103, + "y": 4, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "adde238c-0694-4432-8006-303963a60e19", + "width": 7420, + "x": 1007, + "y": 4, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "8ea0645a-82c2-4e36-962f-b84401d696cb", + "width": 6090, + "x": -1583, + "y": 3364, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "d254d2b5-6824-4d17-a701-55d8261f944b", + "width": 6090, + "x": -1583, + "y": 5114, + "zOrder": 12643502, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "road", + "persistentUuid": "c5fe13d6-e8eb-4657-b827-456fccf06c1b", + "width": 210, + "x": 1287, + "y": 3574, + "zOrder": 12643503, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "b011cb95-d34e-4270-b5f3-d390ce6098d2", + "width": 210, + "x": 2407, + "y": 1754, + "zOrder": 12643503, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "e60ab4c8-322e-453d-93c8-6704d15629f7", + "width": 1470, + "x": 4857, + "y": 3994, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "031afa9f-74ba-4b33-bb23-dbf0d587e76a", + "width": 1260, + "x": 6537, + "y": 3994, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "c01c1293-49cc-46de-98b2-f797611c9410", + "width": 910, + "x": 4857, + "y": 5604, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "14b7583a-0572-48e9-8b84-88de277d6f65", + "width": 210, + "x": 5557, + "y": 5394, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "0739c158-c690-49f8-a953-a087e70c0f1e", + "width": 770, + "x": 5557, + "y": 5184, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "087c7e33-a379-4787-8866-7aedd7cef99e", + "width": 8960, + "x": -1373, + "y": 9454, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fab2e936-06c5-4afb-941c-f81d3c86e005", + "width": 70, + "x": -2423, + "y": 9454, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "745da51b-67a5-4473-9f76-5f99ddda401e", + "width": 70, + "x": -2423, + "y": 9524, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bb1d5200-cd3f-4705-bff2-9d967cb6f0c4", + "width": 70, + "x": -2423, + "y": 9594, + "zOrder": 12628, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2310, + "layer": "", + "name": "road", + "persistentUuid": "37f79bea-7a1b-4ecb-b9d1-f3fc413773c3", + "width": 210, + "x": 4577, + "y": 7634, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2310, + "layer": "", + "name": "road", + "persistentUuid": "b14f9480-00e5-4c8e-8160-7f20402f5b50", + "width": 210, + "x": 797, + "y": 7634, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "cd4d8174-3fdd-4182-a792-467e95200d02", + "width": 3010, + "x": 4787, + "y": 8754, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "bbc36da8-1d5d-4256-87e5-f8598c97b717", + "width": 3570, + "x": 1007, + "y": 8334, + "zOrder": 12643492, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "c9a7f02b-8e65-4fcc-a85b-d24b822c37c6", + "width": 70, + "x": 2687, + "y": 1824, + "zOrder": 12643509, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1330, + "layer": "", + "name": "sand_1", + "persistentUuid": "dc6629cb-e1c7-4319-8b6d-bc628dc6633d", + "width": 70, + "x": 2267, + "y": 1964, + "zOrder": 12643510, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "8a44ff80-9985-4b81-bc96-f37defce96f3", + "width": 1610, + "x": 2757, + "y": 3224, + "zOrder": 12643511, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "de9d0bf3-ed7c-44f9-b4ab-f8f7997ca64d", + "width": 3640, + "x": -1373, + "y": 3224, + "zOrder": 12643512, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "sand_1", + "persistentUuid": "98a8d6bc-f627-43c0-8457-6968388a7233", + "width": 70, + "x": 1567, + "y": 3644, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "sand_1", + "persistentUuid": "9e8c913c-ec8d-4260-845f-ce3e0cdc733b", + "width": 70, + "x": 1147, + "y": 3644, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "sand_1", + "persistentUuid": "ada52f03-7a97-43e8-ab39-102f7e69b7ce", + "width": 140, + "x": 4857, + "y": 7844, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 770, + "layer": "", + "name": "sand_1", + "persistentUuid": "01895071-b1ff-4878-9f48-f2e0ec1e259a", + "width": 70, + "x": 4857, + "y": 8964, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "sand_1", + "persistentUuid": "7633b944-bf04-4047-a48b-95bd9a3c2731", + "width": 70, + "x": 4437, + "y": 8544, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "sand_1", + "persistentUuid": "12331131-db71-4ad4-9d4e-0ea5fdd16be9", + "width": 70, + "x": 657, + "y": 7844, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "sand_1", + "persistentUuid": "68616eb7-06b6-428d-aad6-b0f059f53a80", + "width": 70, + "x": 1077, + "y": 8544, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "sand_1", + "persistentUuid": "88fdc96e-fd84-44c6-8a03-69efe1728e7e", + "width": 70, + "x": 1077, + "y": 7844, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "sand_1", + "persistentUuid": "552bf3c1-4390-4bd3-bca5-c0705a757d9b", + "width": 70, + "x": 4437, + "y": 7844, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "d772d21d-1b66-430f-af08-3120fdaae00b", + "width": 2520, + "x": -1373, + "y": 3644, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "198b230f-dc6f-48f1-8f0b-1f7ea78c7295", + "width": 2520, + "x": -1373, + "y": 4974, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "62ce7585-7d4d-4661-b859-b754c9e8fcca", + "width": 2800, + "x": 1637, + "y": 4974, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "74ac40f6-8ba7-4664-a36d-fb8956a64444", + "width": 2730, + "x": 1637, + "y": 3644, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "2a100190-9380-406d-93ae-a6658c4109a0", + "width": 5880, + "x": -1443, + "y": 5394, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "ad850e65-70d0-4712-89fc-562e0ddad1aa", + "width": 3290, + "x": 1147, + "y": 8544, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "84fa40e6-a207-42cf-b8b2-0304714f92ce", + "width": 3290, + "x": 1147, + "y": 8264, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "384e71c6-3a6a-4c16-971b-f9d9b0b2200d", + "width": 2800, + "x": 4927, + "y": 8964, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "4d4e18ae-4b4a-4561-9b98-755150f1f2e4", + "width": 2730, + "x": 4857, + "y": 8684, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "514bdd7a-4be7-4d4c-a7fa-1298062a3a85", + "width": 910, + "x": 4927, + "y": 5814, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "d370a4b1-4c95-4655-a4aa-2c71c0f55849", + "width": 770, + "x": 5487, + "y": 5114, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "32ce1b27-6bef-4298-880a-b18b4d213645", + "width": 630, + "x": 4927, + "y": 5534, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "623d492f-39d6-4722-b12b-ab40c2a55516", + "width": 490, + "x": 5767, + "y": 5394, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "sand_1", + "persistentUuid": "7563dd75-f1c2-4939-8334-8a9caecaeb9c", + "width": 70, + "x": 5487, + "y": 5184, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "sand_1", + "persistentUuid": "fabbdee8-ea7e-4aae-9c68-a88d5ec6b7b5", + "width": 70, + "x": 5767, + "y": 5464, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "91ca9d21-4f16-4a48-a59d-c572b4e8cf2c", + "width": 1260, + "x": 4997, + "y": 4274, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "108657f6-e96d-41e1-86af-732a5c0dffdc", + "width": 1260, + "x": 4997, + "y": 3854, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "e17a1276-31f5-400f-8a8e-627f7d6d45d0", + "width": 980, + "x": 6607, + "y": 3854, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "1ce0f4cf-d27e-49a2-867c-1c19ca1ee9ae", + "width": 980, + "x": 6607, + "y": 4274, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "5a21ffa6-0e0d-4e38-aadb-a421a2a9f8c3", + "width": 560, + "x": 5697, + "y": 2454, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "cd736c38-1598-4425-92c3-ed57f36c53bd", + "width": 560, + "x": 6117, + "y": 2034, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "sand_1", + "persistentUuid": "6166bbf6-fa32-49f8-b773-a454ed2f5afe", + "width": 70, + "x": 5697, + "y": 1964, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1750, + "layer": "", + "name": "sand_1", + "persistentUuid": "bffc669c-0551-4353-8271-1e0795d28049", + "width": 70, + "x": 6607, + "y": 2104, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1330, + "layer": "", + "name": "sand_1", + "persistentUuid": "59d1b57d-a999-4569-99c2-c993450fb03c", + "width": 70, + "x": 6187, + "y": 2524, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand_1", + "persistentUuid": "640bae2e-a38b-4e78-b403-3becf0f50f97", + "width": 70, + "x": 6117, + "y": 1964, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 770, + "layer": "", + "name": "sand_1", + "persistentUuid": "ed68b5d9-b7a1-4b4f-a08d-58f629284fb7", + "width": 70, + "x": 6187, + "y": 4344, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2590, + "layer": "", + "name": "sand_1", + "persistentUuid": "b18238cb-3258-4fc7-97bb-693901214d4c", + "width": 70, + "x": 6607, + "y": 4344, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "3c327127-60c3-4fb2-82e3-82832b99cd15", + "width": 70, + "x": 6187, + "y": 5464, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "40ad17db-beca-4c0c-a58e-08c10e8dfdb3", + "width": 70, + "x": 6257, + "y": 3924, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "1a41c6b0-2560-4c94-b0e7-154bdc3c46e2", + "width": 1330, + "x": 4927, + "y": 3924, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "23882569-15af-4b02-b425-a011f690647b", + "width": 1330, + "x": 4927, + "y": 4204, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bf332360-8f64-4a10-bd52-83e613f5ce59", + "width": 70, + "x": 4857, + "y": 3924, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "60d7c222-9627-42b1-8892-2a99333e1adb", + "width": 70, + "x": 4857, + "y": 4204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "road_1", + "persistentUuid": "c6006c6f-f18d-48fc-be11-06c317edbf3e", + "width": 70, + "x": 6257, + "y": 4274, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1330, + "layer": "", + "name": "road_1", + "persistentUuid": "501745d5-0b10-47e3-89e1-aa61e018a8e2", + "width": 70, + "x": 4857, + "y": 4274, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1680, + "layer": "", + "name": "road_1", + "persistentUuid": "c0041482-4fa8-45a8-8dcc-f43ee05daa7c", + "width": 70, + "x": 6257, + "y": 5394, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1260, + "layer": "", + "name": "road_1", + "persistentUuid": "c411c462-5558-47e0-8f50-1fe3163fa9e6", + "width": 70, + "x": 4857, + "y": 5814, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "sand_1", + "persistentUuid": "086c5c13-0bfb-4e3f-b326-131571d5ea80", + "width": 70, + "x": 4927, + "y": 5884, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "name": "sand_1", + "persistentUuid": "70e2ecf0-b8b9-4cd2-86bd-48f9be5237c5", + "width": 70, + "x": 4927, + "y": 4274, + "zOrder": 12643513, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c40dce06-d8e0-488e-b6ab-edeb4c13a57c", + "width": 1120, + "x": 6607, + "y": 3924, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "sand_1", + "persistentUuid": "af14be12-5929-4dea-8ecf-b142dc81f8f5", + "width": 140, + "x": 7587, + "y": 4274, + "zOrder": 12665, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "e8c906bc-9bdb-4f6c-bbd3-1a26b46a507c", + "width": 1120, + "x": 6607, + "y": 4204, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6bebc63-e5fe-468e-9514-4d1874f93457", + "width": 70, + "x": 7727, + "y": 3924, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2ecc49d1-2627-4b08-9bc4-c592fd0b1118", + "width": 70, + "x": 7727, + "y": 4204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "road_1", + "persistentUuid": "e71cd05b-180b-480e-8e8e-4f13ed160254", + "width": 70, + "x": 7727, + "y": 4274, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2800, + "layer": "", + "name": "road_1", + "persistentUuid": "8380c290-1ae0-40fd-9cf4-ba478dd61e92", + "width": 70, + "x": 6537, + "y": 4274, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1610141e-f726-457b-8268-2bbdf642066d", + "width": 70, + "x": 6537, + "y": 3924, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "57636c7a-d985-4150-8ac6-30cc90be20ba", + "width": 70, + "x": 6537, + "y": 4204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "61bfe540-ca50-4a04-b55d-4fe8ac71df7f", + "width": 70, + "x": 4437, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "92112e6d-4f02-4b71-a69b-48f7e4cbae2f", + "width": 70, + "x": 4437, + "y": 5324, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "7fe364ed-5b3e-4a19-91c2-38fc43713060", + "width": 2730, + "x": -1513, + "y": 5044, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d3847e2-5785-44f5-a235-fa74ee29665e", + "width": 70, + "x": 1217, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "c2d6370c-52ae-4a50-b515-e4a0915b4af5", + "width": 70, + "x": 1497, + "y": 3644, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cc623d7e-241e-4d11-b1e7-5002b0f9f656", + "width": 70, + "x": 1497, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c7a199e7-174c-44d0-b116-6bc403dc2cb1", + "width": 2870, + "x": 1567, + "y": 5044, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "320ecd38-091f-46dc-97ca-941704f2ece1", + "width": 70, + "x": 1217, + "y": 3644, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "f08207ee-f7e8-43c8-9262-c29524e17b41", + "width": 5950, + "x": -1513, + "y": 5324, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1680, + "layer": "", + "name": "road_1", + "persistentUuid": "910cb279-5c6a-4ab7-a6b6-624babf96549", + "width": 70, + "x": -1583, + "y": 5394, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "067e94d6-518c-4b30-a793-9cfbe6ccdbfe", + "width": 70, + "x": -1583, + "y": 5044, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "59284b66-8737-4516-8efd-95b3bc8dce84", + "width": 70, + "x": -1583, + "y": 5324, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1680, + "layer": "", + "name": "road_1", + "persistentUuid": "9ab07de3-7efc-4547-9432-9c4dacc2d485", + "width": 70, + "x": 4437, + "y": 5394, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "197189fe-feec-4f79-bcbe-0c2c0cfbdb38", + "width": 70, + "x": 4367, + "y": 5464, + "zOrder": 12643515, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "sand_1", + "persistentUuid": "0364de0c-87f6-4bab-93e4-ea590b07f773", + "width": 140, + "x": -1513, + "y": 5394, + "zOrder": 12643516, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "sand_1", + "persistentUuid": "eca8bedb-be93-4cf1-9417-050bcf32e9b6", + "width": 140, + "x": -1513, + "y": 3644, + "zOrder": 12667, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "20ad34d9-21ac-4bb0-b26c-0d827095dcab", + "width": 3850, + "x": -1513, + "y": 3294, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "735c6ea3-6c08-4d3f-8296-606abb82c3f6", + "width": 2730, + "x": -1513, + "y": 3574, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "23f1f3be-5d0d-4ab5-9d61-da59cfeb69e4", + "width": 70, + "x": -1583, + "y": 3294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3f57ef17-653b-4a7a-a823-eeb784a6f5a8", + "width": 70, + "x": -1583, + "y": 3574, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "d3045f2b-2f73-4db8-aaa7-49edeb4e416e", + "width": 70, + "x": -1583, + "y": 3644, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "sand_1", + "persistentUuid": "7db5596d-763c-4e99-b1cb-300352002ce0", + "width": 1610, + "x": 2757, + "y": 1824, + "zOrder": 12643511, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f4e73450-4506-4eb5-92d6-b5301e187a7c", + "width": 70, + "x": 2337, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0bd80b49-acbc-4af3-9bcf-324d574ea3fe", + "width": 70, + "x": 2617, + "y": 1754, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "81d1d476-878b-4685-bf61-766e9311a2e4", + "width": 1750, + "x": 2687, + "y": 1754, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "96f9b2ab-9033-475c-8680-35db4b8a7943", + "width": 70, + "x": 2617, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "3f5823cf-4093-4ff2-94f9-8a86e09b92d4", + "width": 70, + "x": 2337, + "y": 1824, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "64b3c674-8460-46e8-b8c8-a9e821581073", + "width": 1750, + "x": 2687, + "y": 3294, + "zOrder": 12643514, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e200e7f5-2850-43e4-b3b3-1c762ba8b6c9", + "width": 70, + "x": 2617, + "y": 3294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7b523a8c-53e0-4883-83bc-2d0f178200f6", + "width": 70, + "x": 2337, + "y": 3294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "884c1dc9-9042-472e-a091-6125e27ea179", + "width": 70, + "x": 1217, + "y": 3574, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "af553509-5807-4f61-abae-0372fb6985b1", + "width": 70, + "x": 1497, + "y": 3574, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "90dc3121-988c-4e3d-85e4-8f6ebb124870", + "width": 2870, + "x": 1567, + "y": 3574, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1330, + "layer": "", + "name": "sand_1", + "persistentUuid": "5fef56df-36b4-448d-95a5-bae4c66242e1", + "width": 70, + "x": 4367, + "y": 3644, + "zOrder": 12664, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "c657f484-29a8-4e80-8c60-7a75be95b03e", + "width": 70, + "x": 4437, + "y": 3644, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ece83bd8-f7b8-44a4-8a23-6046836e8db6", + "width": 70, + "x": 4437, + "y": 3294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "28b90dbc-d14e-4f7a-a579-9a4d9b6c2931", + "width": 70, + "x": 4437, + "y": 3574, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5e9c16c2-b06f-43c6-a6e7-33039d5f7b53", + "width": 70, + "x": 6257, + "y": 4204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "2e2fd144-fe9a-463c-9d52-8496aff82428", + "width": 3430, + "x": 1077, + "y": 7704, + "zOrder": 12643517, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "8466c094-6dcf-443b-9f02-75a1ee7b6abc", + "width": 3430, + "x": 1077, + "y": 7634, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "d491f74a-65dc-480b-bb45-a8948e6e7b20", + "width": 2870, + "x": 4857, + "y": 7634, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "14bceb31-3df4-4142-ad6b-d8fdcb4afd36", + "width": 70, + "x": 4507, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 630, + "layer": "", + "name": "road_1", + "persistentUuid": "035f4b4f-8815-471c-ab9d-76f6dceab67f", + "width": 70, + "x": 4507, + "y": 7704, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1050, + "layer": "", + "name": "road_1", + "persistentUuid": "790e7b4a-3bc1-468b-97e0-1b82733c1134", + "width": 70, + "x": 4787, + "y": 7704, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "327c5cdf-fa5e-4593-ac0a-6d9bd14269b5", + "width": 70, + "x": 4787, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 910, + "layer": "", + "name": "road_1", + "persistentUuid": "663252f9-354f-4c93-91b9-3f8ac4e0ecd5", + "width": 70, + "x": 4787, + "y": 8964, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3f6a21c7-44e7-4683-9b44-474a8f49d13a", + "width": 70, + "x": 727, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ccd7b73e-5eb3-481e-99c1-388a108ecba4", + "width": 70, + "x": 1007, + "y": 7634, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 630, + "layer": "", + "name": "road_1", + "persistentUuid": "ca819816-067c-47e7-8056-805d612bdd0b", + "width": 70, + "x": 1007, + "y": 7704, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1330, + "layer": "", + "name": "road_1", + "persistentUuid": "5543fcbb-b7d3-4623-9af1-448cd0090f62", + "width": 70, + "x": 1007, + "y": 8544, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2f936bf4-cdfb-4f72-997d-f06234c1578f", + "width": 70, + "x": 727, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5f744f72-edef-4840-af63-ab939e4d3e86", + "width": 70, + "x": 1007, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2170, + "layer": "", + "name": "road_1", + "persistentUuid": "e65c9f0c-efd5-42ac-9984-0abc726f5bc6", + "width": 70, + "x": 727, + "y": 7704, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1330, + "layer": "", + "name": "road_1", + "persistentUuid": "8b184be1-dc93-4dd0-bcdd-02322bd0c213", + "width": 70, + "x": 4507, + "y": 8544, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "8a6d05e3-7a2d-4154-a82f-5d702a953db8", + "width": 2870, + "x": 4857, + "y": 9874, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "352461a0-71ba-4da8-aef0-1f0d46899e88", + "width": 70, + "x": 4787, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51b4fce9-0f49-453f-a863-4295645c794d", + "width": 70, + "x": 4507, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "a90c83de-5151-4e0d-a64b-22b92d4c4b00", + "width": 3430, + "x": 1077, + "y": 9734, + "zOrder": 12671, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "4f826e57-d6ee-4e3b-9e76-c0d1ebae5fd9", + "width": 2730, + "x": 4857, + "y": 9734, + "zOrder": 12671, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "road_1", + "persistentUuid": "5486db91-6f5a-4fc0-94b0-57f6f1c00a1c", + "width": 70, + "x": 7727, + "y": 8964, + "zOrder": 12643518, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "sand_1", + "persistentUuid": "d7cd3123-afeb-4510-894c-2612fe8e644c", + "width": 140, + "x": 7587, + "y": 9034, + "zOrder": 12643519, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "969913b3-2a9f-419f-9754-27e4b2fbf37a", + "width": 2870, + "x": 4857, + "y": 7704, + "zOrder": 12643520, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "Water_cover", + "persistentUuid": "512a0cf1-f26a-44b7-acda-fe8ad3eee917", + "width": 70, + "x": -4103, + "y": 74, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "29159a80-85f8-4cff-b118-8ff6b4956579", + "width": 280, + "x": -4383, + "y": 984, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3c9cb29e-459e-4a23-a053-329743ce79be", + "width": 1820, + "x": -6203, + "y": 1054, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6930, + "layer": "", + "name": "Water_cover", + "persistentUuid": "798ac0f2-4236-43e1-8260-2c5ab960b6c9", + "width": 70, + "x": -6203, + "y": 1124, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "e1c0980a-7b27-4c1c-a5e7-bd7cb945be4e", + "width": 1330, + "x": -6133, + "y": 7984, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1960, + "layer": "", + "name": "Water_cover", + "persistentUuid": "9e9cc5bf-1d8c-423b-b50b-949aeb850bd3", + "width": 70, + "x": -4803, + "y": 8054, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "da17899d-e97e-4df8-9555-d37c414058e9", + "width": 280, + "x": -4733, + "y": 9944, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "Water_cover", + "persistentUuid": "872a0015-f69f-4ea8-8014-a0493d44a7c8", + "width": 70, + "x": -4453, + "y": 10014, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "084121d2-2a75-40cb-838a-e7bde229d4f4", + "width": 70, + "x": -4383, + "y": 10364, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "Water_cover", + "persistentUuid": "47270947-eeae-4ac1-ab29-1613512d46b3", + "width": 70, + "x": -4313, + "y": 10434, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "62506ef8-44e0-45b2-bc24-d3d40047fd1a", + "width": 210, + "x": -4523, + "y": 10714, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 630, + "layer": "", + "name": "Water_cover", + "persistentUuid": "861fb84b-5b47-4381-bd39-0b30a34b6f03", + "width": 70, + "x": -4523, + "y": 10784, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "4723c492-24a9-4b4d-9ea8-e09387572fdd", + "width": 1050, + "x": -4453, + "y": 11344, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "8476889f-2bfe-4b9e-829f-6c15c7b339ed", + "width": 980, + "x": -3333, + "y": 9384, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3db28d1d-7dbd-4328-9b16-7bd9528e7233", + "width": 70, + "x": -2423, + "y": 9454, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "Water_cover", + "persistentUuid": "bd847e6e-85cc-4560-bda0-14d21e341748", + "width": 70, + "x": -3333, + "y": 9454, + "zOrder": 24, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "Water_cover", + "persistentUuid": "625d49fa-2206-4d2b-a195-3fbbe3abac93", + "width": 70, + "x": -3263, + "y": 9944, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "64eea574-4f33-4ec9-9e38-732f90cc045a", + "width": 210, + "x": -3263, + "y": 10154, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "road_2", + "persistentUuid": "78b82140-82f5-4912-8faf-f2317864a69f", + "width": 70, + "x": -1863, + "y": 7564, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2310, + "layer": "", + "name": "road_2", + "persistentUuid": "edf28d64-fcb9-4fc8-8816-e06974566fca", + "width": 70, + "x": -1863, + "y": 10364, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ea3c348-7c3f-4506-8c33-7754ff14b33c", + "width": 70, + "x": -1863, + "y": 10294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e5f0aad8-c03b-444f-8624-b513168be5f6", + "width": 70, + "x": -1863, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2ca0e719-0302-41ec-a7f0-0f889eb7623b", + "width": 70, + "x": -1583, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2310, + "layer": "", + "name": "road_2", + "persistentUuid": "22cebafa-35a7-459c-8c7c-412e5ef5fc50", + "width": 70, + "x": 2757, + "y": 10364, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df910651-37d6-4003-8e3c-543e46a65cba", + "width": 70, + "x": 2617, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec41ad82-6c6e-4d43-8547-c47bc9dcd7ee", + "width": 70, + "x": 2897, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9717df62-3bd0-4929-8d06-f3410d94793b", + "width": 70, + "x": 2757, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b76febbc-716a-431a-9c02-8fa599a103b8", + "width": 70, + "x": 2827, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "856cc07f-029c-4773-9bc9-25008e96423e", + "width": 70, + "x": 2687, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "847f965a-1d42-474c-8240-f235513af3b0", + "width": 70, + "x": 2757, + "y": 10294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "40fc5076-4395-4b65-a1f4-c3ae5e62a9d9", + "width": 70, + "x": 2757, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "road", + "persistentUuid": "9ca3b4ff-a341-4e85-a358-8ff79e7135a1", + "width": 210, + "x": 2547, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2590, + "layer": "", + "name": "road", + "persistentUuid": "b49c8d1f-2b63-43e4-aa87-49bf9253e2fa", + "width": 210, + "x": 2827, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "02c38781-c592-49c7-a009-1c44e299910e", + "width": 3290, + "x": 2967, + "y": 10154, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "road", + "persistentUuid": "f98118eb-0e1d-40ba-b82b-6ea3764b48aa", + "width": 210, + "x": 4927, + "y": 10224, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "fecac3cd-3765-46f4-ab92-019a56dd3388", + "width": 70, + "x": 5137, + "y": 10504, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "b04247d4-92a5-4dfa-b7ac-2de1c64a2bba", + "width": 1890, + "x": 3037, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "5eac0ae2-e069-4c63-a517-1c36eba9f6d0", + "width": 1610, + "x": 5137, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "road", + "persistentUuid": "44b50ee7-47cc-4206-8b7f-c3041226cff1", + "width": 210, + "x": 6747, + "y": 10224, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "074ea108-c55d-418a-b459-ad8a090900e6", + "width": 70, + "x": 6677, + "y": 10504, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "5d1cf1cf-4c99-422d-9b7f-8e43dc41560e", + "width": 70, + "x": 6957, + "y": 10504, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "86edd05c-c293-41d4-aad3-f55ffad652cc", + "width": 2660, + "x": 6957, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "49dc4928-4ef9-41c6-a8b8-7be8dc370169", + "width": 1260, + "x": 8217, + "y": 10154, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f7dfb3fe-3f68-4617-8676-b208d4209f3b", + "width": 70, + "x": 8147, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ee3aa0cd-f5d7-4a44-8695-b88a6dc16363", + "width": 70, + "x": 8077, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "33fc0a6a-806c-4d52-8ec0-d635a2643875", + "width": 1540, + "x": 8357, + "y": 9874, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "daba277b-1a2e-4c22-b77d-583d19e78dc1", + "width": 70, + "x": 8287, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "73443998-fa50-4282-af48-dd403a8a16a5", + "width": 70, + "x": 9897, + "y": 9874, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4e1d968d-0ad1-4902-aa42-f50620a431b0", + "width": 70, + "x": 9617, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "3aa80573-a107-43a7-a680-13b243b4032f", + "width": 210, + "x": 9687, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "22087bf1-d65d-41b9-9fe6-a96c7ecbfbc3", + "width": 70, + "x": 9477, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d8a8c0b9-44f8-4818-80a3-2f35509b8655", + "width": 70, + "x": 9547, + "y": 10154, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6188a85a-be45-4b52-b0d8-f6693a1e966c", + "width": 70, + "x": 9617, + "y": 10294, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2310, + "layer": "", + "name": "road_2", + "persistentUuid": "e76194b4-b095-46b4-b810-0925f3ec3b40", + "width": 70, + "x": 9617, + "y": 10364, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "da5a26ac-b2a3-4e09-a4c2-4cd75f6dd52c", + "width": 70, + "x": 9617, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 5950, + "layer": "", + "name": "road_1", + "persistentUuid": "3a5fc110-ee9e-4816-9746-60f2c0493365", + "width": 70, + "x": 9897, + "y": 9944, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2170, + "layer": "", + "name": "road", + "persistentUuid": "805947b2-ca34-4728-8e26-c3bda74845db", + "width": 210, + "x": -1793, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ac8586af-dba7-41f2-a600-f965a778a712", + "width": 70, + "x": 3037, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06e05608-8832-4c27-8b37-7138f3c0b147", + "width": 70, + "x": 2477, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "fd39ea97-765c-4d7b-8311-67136a34bbe9", + "width": 1750, + "x": 3107, + "y": 10434, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f86ea05b-87f9-4da4-bacd-bb96e9e21561", + "width": 70, + "x": 5137, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0401b534-c1d0-4b86-a6cd-57fbf58575ac", + "width": 70, + "x": 4857, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "11b517b1-4c26-4c9a-b136-35df56ad5038", + "width": 1470, + "x": 5207, + "y": 10434, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "9648a960-da34-498f-b7ad-edbb286186b6", + "width": 2310, + "x": 7027, + "y": 10434, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "road", + "persistentUuid": "6df1b79a-6ce3-417f-8d05-40215dbe3b2d", + "width": 210, + "x": 9407, + "y": 10434, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5600, + "layer": "", + "name": "road", + "persistentUuid": "30f0a8fe-d569-44ef-978a-fe7972dfb415", + "width": 210, + "x": 9687, + "y": 10364, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "492f89c8-ed87-47a2-bb68-861da612674c", + "width": 70, + "x": 9337, + "y": 10504, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7358d0a2-2511-4143-8626-0fc59b694f2e", + "width": 70, + "x": 6957, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b3955b26-428c-46a7-982b-b8817eb339ef", + "width": 70, + "x": 6677, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d2c84c3b-686d-4d32-a7bb-9a0ac39cbaa3", + "width": 70, + "x": 9337, + "y": 10434, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "0e7af277-a9ee-4496-8213-c04c267d042f", + "width": 2170, + "x": 3107, + "y": 13094, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "27216840-c36e-4fc0-8435-a7afaf8f6862", + "width": 1470, + "x": 5207, + "y": 12534, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "04bdfa57-98aa-4c7f-8f64-f7fe88ef9d39", + "width": 4270, + "x": 5137, + "y": 12604, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "ab1ad19e-28a9-4263-89a9-e8f030baadfc", + "width": 1750, + "x": 5067, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "04f17380-afca-4b25-87fe-3f9d6839f41b", + "width": 2310, + "x": 7027, + "y": 12534, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "d29e248e-b22f-4c31-b934-a87ea9c80c20", + "width": 1750, + "x": 3107, + "y": 12534, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "6ce06bff-5cc9-4b84-a540-c08e81e85f6b", + "width": 70, + "x": 4857, + "y": 10504, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "e7cf6d88-e9b8-400c-a8cf-bf983712c787", + "width": 70, + "x": 2477, + "y": 10504, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "340de43e-d097-48bd-8e9b-3f53632a61af", + "width": 70, + "x": 3037, + "y": 10504, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "4a4f09c9-d930-48a0-890b-c0bc967c18cb", + "width": 1890, + "x": 2967, + "y": 12814, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8a8dff71-2cbd-40c8-8336-338d33ed8751", + "width": 70, + "x": 2897, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0181497c-3ea2-4d2b-b822-72d32024c494", + "width": 70, + "x": 2757, + "y": 12674, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e102d5d5-b6cd-42c1-8358-48c2404abb1b", + "width": 70, + "x": 2757, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "5d293a4a-dc24-49ff-84ba-914ec44c7710", + "width": 2100, + "x": 3037, + "y": 12604, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "5049e697-a883-4829-bf33-aa0dfcfedeec", + "width": 2030, + "x": 3037, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21c3449d-4228-48d1-a9c4-643f71e18b17", + "width": 70, + "x": 2757, + "y": 12954, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2730, + "layer": "", + "name": "road_1", + "persistentUuid": "6100c752-1a4a-41dd-8e60-d30337daae0f", + "width": 70, + "x": 3037, + "y": 13164, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road", + "persistentUuid": "032f6499-ad87-4922-a67b-d8833f338b94", + "width": 210, + "x": 2827, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3010, + "layer": "", + "name": "road_2", + "persistentUuid": "85d32242-aee6-4395-8a62-30d273330db5", + "width": 70, + "x": 2757, + "y": 13024, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "666d3df8-343d-4ec3-9e50-797d48e967f6", + "width": 1330, + "x": 5277, + "y": 13094, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "53b6d093-d035-4cab-a003-ef60841d5d4f", + "width": 2240, + "x": 7097, + "y": 13094, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2870, + "layer": "", + "name": "road", + "persistentUuid": "e0071228-3a7d-4c2d-8cad-7591fe4b8071", + "width": 140, + "x": 6677, + "y": 13094, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road", + "persistentUuid": "89aaa764-bc38-4895-bb94-65628e0e3df5", + "width": 140, + "x": 6887, + "y": 12884, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "90d1f06b-caf9-43d5-b9f7-844a64d300e8", + "width": 1470, + "x": 5207, + "y": 12814, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9d991970-243e-425b-9312-a56df88c17dd", + "width": 70, + "x": 4997, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6c239c8-ca07-4790-b47a-35af24a5fef9", + "width": 70, + "x": 5137, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bc2a11f5-8fe9-473a-88c8-0c8c11d73e8e", + "width": 70, + "x": 4857, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3010, + "layer": "", + "name": "road_2", + "persistentUuid": "fa3a0048-1702-4789-a9ab-20d458b1a479", + "width": 70, + "x": 6817, + "y": 13024, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 980, + "layer": "", + "name": "road_1", + "persistentUuid": "cd04832c-e4d4-40a9-9f08-4512f9c6215c", + "width": 70, + "x": 7027, + "y": 13164, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2730, + "layer": "", + "name": "road_1", + "persistentUuid": "e115a2fc-3a41-4382-8495-291ee0465493", + "width": 70, + "x": 6607, + "y": 13164, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d6a407c-26a9-4396-ace1-1ad5ace491eb", + "width": 70, + "x": 6817, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "56ce53d7-9487-47c9-ad16-4d49d5c88c5d", + "width": 70, + "x": 6677, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "908a2193-9ce1-42c7-8a1f-8e3138e9c539", + "width": 70, + "x": 6957, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c9d76a84-8f62-4113-93ad-cf29e9d9353b", + "width": 70, + "x": 6817, + "y": 12954, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "c2e4ad45-1c67-43b8-8563-8e88c2b0fd0d", + "width": 2450, + "x": 7027, + "y": 12814, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "ef95d6ab-8317-421b-8768-2c772ce8fbfd", + "width": 2380, + "x": 7027, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road", + "persistentUuid": "9e7b3dce-e2c6-4ef1-a8b9-afd55aa797cc", + "width": 210, + "x": 9407, + "y": 12884, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "2c335414-6b3c-4648-adba-4123df552df6", + "width": 1470, + "x": 5207, + "y": 12534, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "a2bf89b5-6399-4adc-97c3-1d3a90c3a062", + "width": 1750, + "x": 5067, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "be83dbf5-9d1a-4409-a598-492f074a1d45", + "width": 1330, + "x": 5277, + "y": 13094, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "44881460-8c57-43b0-8928-b8b9a5fffb3a", + "width": 1470, + "x": 5207, + "y": 12814, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8736c0bf-2ba6-4148-b0da-69301c9d2bc9", + "width": 70, + "x": 4997, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "59aab510-c419-4b75-8aa1-c88c20372f4d", + "width": 70, + "x": 5137, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "613744cb-c3da-4b44-8de5-03e41e68c670", + "width": 70, + "x": 4857, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5325cce6-b55c-4ba0-9be5-478994772279", + "width": 70, + "x": 6817, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a59314e1-0fd7-47e4-a67c-7cd9052775f5", + "width": 70, + "x": 6677, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0abceb57-04e2-47f5-9112-2cf80f458e58", + "width": 70, + "x": 6817, + "y": 12954, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "ba2a25e3-dcea-47b6-ae88-6b146c62020a", + "width": 1470, + "x": 5137, + "y": 15894, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "02bee7f8-f902-42eb-a298-5730ff22bc1b", + "width": 1820, + "x": 4997, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "cb58ab9b-0cc8-4d51-8cc4-dd6c725672df", + "width": 1400, + "x": 5207, + "y": 16454, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "ccb35225-cb38-4532-af98-51a3eda3f354", + "width": 3710, + "x": 2967, + "y": 16174, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5ea2c131-f6cf-4875-a54d-0c178115f182", + "width": 70, + "x": 6817, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7869b4f3-5555-45e3-ae46-6c132f07b094", + "width": 70, + "x": 6677, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba9d84d7-250f-4419-b4dc-8b29835d4336", + "width": 70, + "x": 6817, + "y": 16314, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "d433501d-a50f-45b4-a8c2-d554bf6973b0", + "width": 2170, + "x": 3107, + "y": 16454, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "399a28c2-4fbd-438b-a536-5ebe2fe94d58", + "width": 1750, + "x": 5067, + "y": 15964, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "802020dc-0b76-49b7-b6eb-555e4bbc5ed2", + "width": 2100, + "x": 2967, + "y": 15964, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "b57a029f-18c1-4099-a58e-30f0821d2527", + "width": 2030, + "x": 2967, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "6de9bfd7-f134-46f8-9071-fbb1a3cdd32f", + "width": 4270, + "x": -1653, + "y": 16174, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "0abbb37a-17c8-4094-9061-34af4ad66c8e", + "width": 2030, + "x": 3107, + "y": 15894, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c1c0faa9-0611-4397-bad5-b6bd885fbae2", + "width": 70, + "x": 2757, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "159db10e-a8d6-4eaa-ad45-41226fdb57fe", + "width": 70, + "x": 2757, + "y": 16034, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "08500c2a-4849-46be-8a04-3ce4ea0ae62a", + "width": 70, + "x": 2897, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "915f38c2-6527-46b3-ba16-13df424dd044", + "width": 70, + "x": 6817, + "y": 16034, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1750, + "layer": "", + "name": "road_2", + "persistentUuid": "f441756f-025e-4a14-a819-a52eb64e8885", + "width": 70, + "x": 6817, + "y": 16384, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "70d40135-e248-48a6-b4ae-88f57dea4f32", + "width": 70, + "x": 7027, + "y": 14494, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "894bc319-3b3d-4b45-8132-70fd16ab74af", + "width": 2380, + "x": 7027, + "y": 14214, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "9ed217d0-74c7-4d85-b826-f599f0f9898e", + "width": 2240, + "x": 7097, + "y": 15894, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "fe6983a6-e873-459a-8b1a-e9a2408937fd", + "width": 2240, + "x": 7097, + "y": 16454, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9663ce8a-4630-4e2f-8538-e5cc043f4e38", + "width": 70, + "x": 6957, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "a4148edb-5041-49ef-be9a-3f9b14d6fd1f", + "width": 2450, + "x": 7027, + "y": 16174, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "d4088ebb-4155-4a89-a8cb-3093b26aecac", + "width": 2730, + "x": 6887, + "y": 15964, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "f20d32a0-89a4-4313-a338-a86e88f057c6", + "width": 2730, + "x": 6887, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "f427ebfa-ec19-463e-bdbc-5e591277d360", + "width": 140, + "x": 6887, + "y": 16454, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2800, + "layer": "", + "name": "road", + "persistentUuid": "0e3d2a18-b32c-4a88-b097-41f9677e386a", + "width": 140, + "x": 6677, + "y": 16454, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2660, + "layer": "", + "name": "road_1", + "persistentUuid": "d86bb8e8-f969-4677-a8e7-8e4477f02828", + "width": 70, + "x": 6607, + "y": 16524, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "33419441-3383-48a7-ad89-883e93b07baa", + "width": 70, + "x": 7027, + "y": 16524, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "road_1", + "persistentUuid": "98075fd0-e6da-40ba-b514-7dda483868d4", + "width": 70, + "x": 9337, + "y": 13164, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1400, + "layer": "", + "name": "road_1", + "persistentUuid": "64f112bf-2a36-4a3a-b7c0-87fb737be423", + "width": 70, + "x": 9337, + "y": 14494, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3010, + "layer": "", + "name": "road_2", + "persistentUuid": "51ab1b3e-4d12-4ac2-9bf9-ad315f981f11", + "width": 70, + "x": 9617, + "y": 13024, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1d224e8b-19e8-420f-a271-dcb5ad392008", + "width": 70, + "x": 9617, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8b2bf57e-8c9d-4914-8c8a-f6aa8ec28afc", + "width": 70, + "x": 9477, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "746cc986-a719-4a13-9360-b65f2341456c", + "width": 70, + "x": 9617, + "y": 12954, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f7837e4c-274b-464f-af56-db6dec723814", + "width": 70, + "x": 9617, + "y": 12674, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5b43f547-6de7-4159-aa19-ecdc109b4963", + "width": 70, + "x": 9617, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8ab1f3e5-21fc-4c4b-a2ae-032eda1d6371", + "width": 70, + "x": 9477, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e67d269a-d47a-4bce-8f8d-0f12c0212a5c", + "width": 70, + "x": 9617, + "y": 16034, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1750, + "layer": "", + "name": "road_2", + "persistentUuid": "4c3c0e94-8ff6-45c1-92c7-3d35aac57c91", + "width": 70, + "x": 9617, + "y": 16384, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1bd879fb-df64-4eef-8ac6-d94bc152263a", + "width": 70, + "x": 9617, + "y": 16314, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "41835070-5ff6-4b45-a7cf-eeae848bd3ca", + "width": 210, + "x": 9407, + "y": 16454, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "road", + "persistentUuid": "7f6296fe-0a69-4b5d-b191-005fb8de7c67", + "width": 210, + "x": 9687, + "y": 16454, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "road_1", + "persistentUuid": "e6ad724c-1b2e-4670-8122-799ffd46da20", + "width": 70, + "x": 9337, + "y": 16524, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "ed137d93-dda8-43ec-bd9e-1aaadfc6ad57", + "width": 70, + "x": 9897, + "y": 16524, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cfeb9116-0300-4492-87fb-d77feefe8dbd", + "width": 70, + "x": 9897, + "y": 18554, + "zOrder": 12643521, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ef382147-f9ad-49ec-8e40-6494b09115d6", + "width": 70, + "x": 9617, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "7d6fd711-26a7-445e-b2f4-608f9bacaf9a", + "width": 2870, + "x": 7027, + "y": 18344, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "2835e990-9575-4c64-a965-4aff82f30e3e", + "width": 2730, + "x": 6887, + "y": 18064, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b746700f-7b55-4133-8451-7f3b8ec6cf67", + "width": 70, + "x": 9617, + "y": 18134, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ab8b8d42-d2ec-4c84-980b-36e94a215ff2", + "width": 70, + "x": 9477, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "b72a54ab-b02c-4034-8889-3a8d99e61ec8", + "width": 2450, + "x": 7027, + "y": 18274, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "6d83020e-24cf-49e5-962f-882b2f73eac4", + "width": 2240, + "x": 7097, + "y": 17994, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 980, + "layer": "", + "name": "road_1", + "persistentUuid": "1eb2fca0-eae8-446b-810e-5ac249f78c3d", + "width": 70, + "x": 7027, + "y": 18624, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "55eece28-d2c4-48d3-88b3-8509648cba53", + "width": 70, + "x": 6817, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "22525c23-de15-4e6d-8a6f-8560273a57e4", + "width": 2800, + "x": 7097, + "y": 18554, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "name": "road", + "persistentUuid": "10bea1a3-f36e-4b0f-9862-7d4b73155e58", + "width": 140, + "x": 6887, + "y": 18344, + "zOrder": 12643506, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf3cc8e3-95cb-4179-a316-d493e78a2ffa", + "width": 70, + "x": 6817, + "y": 18134, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcc0b432-2ba3-4acc-9788-88cc7a0bbb42", + "width": 70, + "x": 6817, + "y": 18414, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 770, + "layer": "", + "name": "road_2", + "persistentUuid": "b9c575f0-10b0-41ec-8f73-3ed4eb82a4ad", + "width": 70, + "x": 6817, + "y": 18484, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c8fab0d3-85f9-4515-83c8-be8e6910c8da", + "width": 70, + "x": 6957, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4acbec41-76f4-42c0-9fa9-688e5045cac2", + "width": 70, + "x": 7027, + "y": 19604, + "zOrder": 12643521, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "277ad296-daaf-4e07-aff7-162158c4c52e", + "width": 70, + "x": 6817, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ea05dc1-236f-47dc-be2f-312f53598c43", + "width": 70, + "x": 6817, + "y": 19254, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d3dcb93e-2572-4a7b-a23d-2277287b20ac", + "width": 70, + "x": 6677, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "a061634b-95e5-4c33-af7d-6e6a6c17c358", + "width": 2450, + "x": 4227, + "y": 19394, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2870, + "layer": "", + "name": "road", + "persistentUuid": "06dcb85a-5a41-43d6-a48a-11b2d924422e", + "width": 210, + "x": 2827, + "y": 16524, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2660, + "layer": "", + "name": "road_1", + "persistentUuid": "37dd906f-88de-4a05-834e-c80775f59434", + "width": 70, + "x": 3037, + "y": 16524, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "18aed27b-c58b-43c5-8b61-76a2fbec74b7", + "width": 70, + "x": 2757, + "y": 16314, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2870, + "layer": "", + "name": "road_2", + "persistentUuid": "ebf9d666-6a40-4103-b305-9024ad87a06d", + "width": 70, + "x": 2757, + "y": 16384, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "8273594f-7122-4737-90df-2ae9a3cf6e62", + "width": 140, + "x": 2827, + "y": 15964, + "zOrder": 12643522, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "road", + "persistentUuid": "6515ba3b-1566-4fdd-bb74-d0f8c2401749", + "width": 140, + "x": 2827, + "y": 16244, + "zOrder": 12643522, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8e0f3a2a-6391-4ab0-890a-c47fea75015e", + "width": 70, + "x": 2967, + "y": 16454, + "zOrder": 12643522, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "e84e3191-bd7a-41d0-8259-fb34bae9b845", + "width": 2030, + "x": 4787, + "y": 19254, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "9d9711f8-7ed4-4ce3-abff-25f16e0886c1", + "width": 1890, + "x": 4997, + "y": 19464, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "ac185f84-819c-4aed-9700-9d35cfd407e2", + "width": 2800, + "x": 4227, + "y": 19604, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c3ac9676-0594-4ec8-ba1f-12ef8d6e12f3", + "width": 3500, + "x": 3107, + "y": 19184, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "7d722564-94fe-473d-b0dd-c4ab51a96f33", + "width": 1750, + "x": 3037, + "y": 19254, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "ebaba130-b702-4cf1-a0f6-800505c78260", + "width": 2240, + "x": 2757, + "y": 19464, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a1850f1-19ae-47d8-b010-a1ede35d681d", + "width": 70, + "x": 2757, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a615cf03-b613-4383-adb6-46bcbbbec4fe", + "width": 70, + "x": 2757, + "y": 19254, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "487657cb-ad97-4902-95f4-4165d352b630", + "width": 70, + "x": 2897, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "2d5d89f3-d06a-4695-97cd-5f93ab9cbfb0", + "width": 1260, + "x": 2967, + "y": 19394, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6230, + "layer": "", + "name": "road", + "persistentUuid": "f77713ca-befe-445e-80ca-3e411c2c4473", + "width": 210, + "x": -2073, + "y": 10224, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "cc73d08e-ff42-43f1-9590-1c225b450678", + "width": 1680, + "x": 2547, + "y": 19604, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "76b6b2c9-1dfb-4d17-9ec4-6f4b6e814205", + "width": 70, + "x": 4927, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a1908d83-bf49-46c1-a62c-fbc447839b89", + "width": 70, + "x": 5067, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ea5583c2-ebd1-4ba7-b68a-969d6624cb6d", + "width": 70, + "x": 6817, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fdc238e7-22a8-424c-b66f-089cef7ccdb2", + "width": 70, + "x": 6747, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9160e75f-a7c6-45fb-a2d3-11bf256f6caf", + "width": 70, + "x": 6887, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "113c4839-8589-41cb-aa72-1dc6708691f6", + "width": 70, + "x": 9617, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a8616103-dda4-4d83-bc96-808b67bd6747", + "width": 70, + "x": 9547, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "45dbb4ce-dd97-4f36-8d17-491c761466af", + "width": 70, + "x": 9617, + "y": 12744, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1382861-77d3-496e-9460-f19fb87cbab6", + "width": 70, + "x": 6887, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1045293-4446-450e-aefa-ce82e14485be", + "width": 70, + "x": 6747, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c036ab0a-af62-44ba-8259-2a0c1821940e", + "width": 70, + "x": 6817, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b8e417f5-59e0-4b35-a6b8-27f4d71803f6", + "width": 70, + "x": 6817, + "y": 16104, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "24181518-6600-4c49-a65a-78f1109ba4ef", + "width": 70, + "x": 9687, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a57c63c-ddfe-4c44-b4f8-e49a809e18cb", + "width": 70, + "x": 9617, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6e65ee65-00bc-4e49-b12f-f6c92a767171", + "width": 70, + "x": 9617, + "y": 16104, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "63cdd365-239c-49ed-8a94-c133fa030337", + "width": 70, + "x": 9547, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6f5d5e13-33eb-4bca-bd80-c5a1ce09cae0", + "width": 70, + "x": 9617, + "y": 18204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a4f139f-5512-4675-9450-689eb5ac8522", + "width": 70, + "x": 9547, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c57961b1-3c0b-4e94-adf3-47bf6af5a7ee", + "width": 70, + "x": 6887, + "y": 18274, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b08a897d-62c1-4106-9bdd-5bce54f8d175", + "width": 70, + "x": 6817, + "y": 18344, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "97d3faf2-301a-4517-bd64-a518a7e76de4", + "width": 70, + "x": 6817, + "y": 18204, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf31f9da-44a1-4bd9-981c-de95c339e2b1", + "width": 70, + "x": 6747, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ce9d12f5-acf4-4ddf-8357-50241aac7996", + "width": 70, + "x": 6817, + "y": 19324, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d49115a3-7c80-4164-ad75-75f6f172cfdb", + "width": 70, + "x": 2757, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d0b8e24b-d693-4ce2-ad55-fe39ad419568", + "width": 70, + "x": 2827, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e73231dc-7533-4a72-979e-04a67296f599", + "width": 70, + "x": 2757, + "y": 16104, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a7779af1-2428-40f3-bea6-3d7012667619", + "width": 70, + "x": 2827, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2bf8ee55-9611-492f-8771-75e691f249a3", + "width": 70, + "x": 2757, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "857b44c0-e061-46e9-bf97-41c1e1bb4faa", + "width": 70, + "x": 2757, + "y": 12744, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8c2b963c-b017-4c63-af91-2562a2271db6", + "width": 70, + "x": 7027, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0e7ad0c8-e902-407b-9d42-f0c9e30dc06d", + "width": 70, + "x": 6957, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c85ec12c-dc63-4026-a118-ef5db5cb0f65", + "width": 70, + "x": 6677, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d71d02d4-77db-4d98-9677-01c5bf7dc189", + "width": 70, + "x": 6607, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "edd98c31-3d08-4615-87c7-bd67cba34f77", + "width": 70, + "x": 9337, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0e487da3-ae7a-426b-8da9-a5a95a186c68", + "width": 70, + "x": 9337, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "25e7d4c0-5ea0-4c7d-aee9-17f984cecefb", + "width": 70, + "x": 9337, + "y": 14144, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "846420e6-bbe0-49b8-b42c-1fbed6210556", + "width": 70, + "x": 9337, + "y": 14424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7b4830fc-bafe-446d-907b-6a6c5d57a204", + "width": 70, + "x": 7027, + "y": 14144, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a1d6ba51-644d-4e3e-9d18-27b40a4a43e6", + "width": 70, + "x": 7027, + "y": 14424, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0de472ec-d652-4505-b8a6-1febf1a832aa", + "width": 70, + "x": 6607, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e4ee2ca7-d64e-4935-a452-c643da073762", + "width": 70, + "x": 7027, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4219dc21-6938-40d2-bece-11fc47c2c520", + "width": 70, + "x": 7027, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e9aeef6d-c78c-4ca8-9817-9e1e83b47e24", + "width": 70, + "x": 6607, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "91d56a7d-e78c-44cf-a8e6-6bbac8d765aa", + "width": 70, + "x": 9337, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc67567c-b685-4f3d-9808-a578634737d2", + "width": 70, + "x": 9337, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7cd2a7d3-0a67-472f-9d9c-b0dd55686404", + "width": 70, + "x": 9897, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ac829326-ead2-4a41-a871-8099851d5c00", + "width": 70, + "x": 9897, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2e13f0f0-6156-496c-9c54-8578a426f3a8", + "width": 70, + "x": 9337, + "y": 17994, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6925fa6e-f1e8-479b-88e6-588b786506d7", + "width": 70, + "x": 7027, + "y": 18554, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e31f895c-6611-4344-af79-772414f2aadd", + "width": 70, + "x": 7027, + "y": 17994, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44a56420-4eff-474a-bf64-538a5f49ebdf", + "width": 70, + "x": 6607, + "y": 19184, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b4d45fc0-e030-4cc7-8d45-ba8b08838672", + "width": 70, + "x": 3037, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "48567e45-2862-4dc2-a727-dc9a3d616132", + "width": 70, + "x": 3037, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c273377b-6427-4545-aca3-a6ac17c91fa6", + "width": 70, + "x": 5137, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c86d6229-7ebc-419f-b129-7ca7057d4d2f", + "width": 70, + "x": 4857, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5dea7c70-d153-4aef-bb2f-681b22134684", + "width": 70, + "x": 3037, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2806d64e-2331-4768-a96c-a774c649f3ed", + "width": 70, + "x": 3037, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "4c60e3ca-5e63-4e3d-89fd-4a60515adfe5", + "width": 2240, + "x": 7097, + "y": 14144, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "30987d53-3886-462e-8b4f-bbb0a7532185", + "width": 2240, + "x": 7097, + "y": 14424, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 8820, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "16098e7b-37ba-42b5-8651-e8dbdd7ab75f", + "width": 3640, + "x": 3037, + "y": 10434, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 7630, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "56a20172-a168-47fc-aa4e-05e26c8efe4a", + "width": 2380, + "x": 7027, + "y": 10434, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "mouse_point", + "persistentUuid": "cc897d11-c3d3-4909-87e6-792c531e6494", + "width": 0, + "x": 8847, + "y": 17294, + "zOrder": 12643523, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 8750, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "9f9732ea-6c64-4216-8d51-62d9eac4ebbf", + "width": 1330, + "x": 9897, + "y": 9874, + "zOrder": 13, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "620c6902-a84e-46f0-9156-01b791e8d603", + "width": 1470, + "x": 9757, + "y": 8684, + "zOrder": 12643524, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "fe2f6bc8-e8c0-4b72-b07c-d50970f7455d", + "width": 4130, + "x": 7097, + "y": 18624, + "zOrder": 12643525, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "843f593c-fce1-44b9-a92c-654085d4d410", + "width": 5670, + "x": 2477, + "y": 19674, + "zOrder": 12643526, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0386498b-c3be-4f3a-afcb-896f1a75fcc4", + "width": 70, + "x": 2617, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "550f5854-d9b4-482b-96f9-644eb48ab3ec", + "width": 70, + "x": -1863, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "be8488ca-2a98-4942-aa5f-ecd102191308", + "width": 70, + "x": -1723, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3290, + "layer": "", + "name": "road", + "persistentUuid": "950e575e-238a-40eb-9f5c-05eec2c97534", + "width": 210, + "x": -1793, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3010, + "layer": "", + "name": "road_2", + "persistentUuid": "9c3000a8-e6fa-46f8-ba05-84cce601d523", + "width": 70, + "x": -1863, + "y": 13024, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_4", + "persistentUuid": "bf79c516-3df7-48ef-a179-4ff489ff1a69", + "width": 4270, + "x": -1653, + "y": 12814, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "26af4e03-daf7-4d6c-b447-66848b5cbf75", + "width": 70, + "x": 2617, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "578adad8-068e-4e99-a7b7-5689999c7ad7", + "width": 4340, + "x": -1793, + "y": 12604, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ac526e88-a164-4cee-aeca-1679447f5bb0", + "width": 70, + "x": -1863, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1d42741a-3b08-439b-84d2-63ed1aa4b439", + "width": 70, + "x": -1863, + "y": 12954, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1f3f1da-9e9b-4187-89a6-7d333666b0f0", + "width": 70, + "x": -1863, + "y": 12674, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3592bd79-4027-40a0-9e64-951c3277b309", + "width": 70, + "x": -1723, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "45d2c526-3acb-4de7-a2b6-550f046ad145", + "width": 4340, + "x": -1583, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "827d8360-4711-4b1b-88b6-0972543169b6", + "width": 70, + "x": 2477, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "1a17b682-0339-4c25-b775-0a24202bf7bb", + "width": 3990, + "x": -1513, + "y": 12534, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2030, + "layer": "", + "name": "road_1", + "persistentUuid": "b58b380e-a18b-4d59-9d2e-9818f5dd8681", + "width": 70, + "x": -1583, + "y": 10504, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2cdaa1e7-e1f7-45aa-84f9-220f090dba20", + "width": 70, + "x": -1583, + "y": 12534, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2870, + "layer": "", + "name": "road", + "persistentUuid": "db86b3a2-3c4a-4637-ace4-7d372a2bf0c9", + "width": 210, + "x": 2547, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2730, + "layer": "", + "name": "road_1", + "persistentUuid": "f4e5f66b-903c-4e62-8042-61149f42d3da", + "width": 70, + "x": 2477, + "y": 13164, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d695c88d-05a0-4031-810a-26f82232f7a5", + "width": 70, + "x": 2477, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "c9485ce5-ec12-4ad6-ad01-e374b70c833a", + "width": 3990, + "x": -1513, + "y": 13094, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ad78c875-c6fe-472b-9a86-bd5ab255d682", + "width": 70, + "x": -1583, + "y": 13094, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 2730, + "layer": "", + "name": "road_1", + "persistentUuid": "dc218830-3ac1-4a81-826d-23b4843ae1e7", + "width": 70, + "x": -1583, + "y": 13164, + "zOrder": 25, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "554327d5-ba9e-4d68-8c76-bc24d311fbcc", + "width": 4340, + "x": -1583, + "y": 15964, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "3b6f28e5-2196-40b7-85e7-f4e2ad80df2b", + "width": 4620, + "x": -1863, + "y": 16244, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5bccaca4-3046-4edd-ab8b-5b2abe83b7e1", + "width": 70, + "x": -2143, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "b201b059-58ab-4d4a-863f-e95d0e15ed5e", + "width": 3990, + "x": -1513, + "y": 15894, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road_3", + "persistentUuid": "924863be-cc52-46f3-be72-da3d1aae9ff6", + "width": 4550, + "x": -2073, + "y": 16454, + "zOrder": 16, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d3463d3f-81ff-4fc5-91fb-3b262468f18e", + "width": 70, + "x": -1583, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3150, + "layer": "", + "name": "road", + "persistentUuid": "378c718c-1dc0-4e51-86bd-236e49eac8a7", + "width": 210, + "x": 2547, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3080, + "layer": "", + "name": "road_1", + "persistentUuid": "43af2d45-5e7e-482d-9109-39b9d5d51e6c", + "width": 70, + "x": 2477, + "y": 16524, + "zOrder": 14, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bf6b306d-e6b3-4054-9d6d-d8c90ec6144b", + "width": 70, + "x": 2477, + "y": 15894, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "479047e2-7450-4589-85aa-62b1284e45d1", + "width": 70, + "x": 2477, + "y": 16454, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4da04fff-eaf8-4893-9097-9f670c6b910f", + "width": 70, + "x": -1863, + "y": 16034, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1759480d-43f9-478c-8624-fcd58b294656", + "width": 70, + "x": 2687, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "caded08f-7c2f-4c27-8927-f5ee38977988", + "width": 70, + "x": -1863, + "y": 12884, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a1664966-103d-457c-863a-75afb9549dd7", + "width": 70, + "x": -1793, + "y": 12814, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5aec574a-f139-45c3-8e29-2fd04ee84d98", + "width": 70, + "x": -1863, + "y": 12744, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1fabec15-8f68-4814-a218-05b51a86b4ed", + "width": 70, + "x": -1793, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6ea91c80-16ae-4680-a05d-107de1b1ca95", + "width": 70, + "x": -1863, + "y": 16104, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3a61c2fd-4fbf-44b0-85c0-a2d84f10e781", + "width": 70, + "x": 2687, + "y": 16174, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5530, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "78425f3a-af38-41a3-ad58-36b18752cd4e", + "width": 4130, + "x": -1583, + "y": 10434, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9b04b0a2-60a3-4ef8-b2fc-4517cc5ceb4e", + "width": 70, + "x": 2477, + "y": 19604, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "39bf7d91-d508-4797-ab43-e06a0eff7795", + "width": 70, + "x": 3037, + "y": 19184, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "04e15660-4c4d-45cb-a1c8-0a44a7c5be50", + "width": 70, + "x": 2757, + "y": 19324, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bd8091c9-2b10-408d-a3fd-e2ae57895d41", + "width": 70, + "x": 2827, + "y": 19394, + "zOrder": 16, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "4471f5ad-7f92-4281-8318-5577739caede", + "width": 140, + "x": -1513, + "y": 10504, + "zOrder": 12643532, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "51342580-ea6b-4f8b-976e-9ad9259ace82", + "width": 140, + "x": 2337, + "y": 10504, + "zOrder": 12643532, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "6f2b77e4-b213-4b06-8098-ec3e1177454c", + "width": 3710, + "x": -1373, + "y": 10504, + "zOrder": 12643533, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "80d5b790-c58c-4de4-91f9-c15ca5609513", + "width": 3710, + "x": -1373, + "y": 12394, + "zOrder": 12643533, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "bdc1cc1b-7212-40e5-90dc-ab7684adbe67", + "width": 3990, + "x": -1513, + "y": 13164, + "zOrder": 12643533, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "11f6961f-554b-4de7-8ef4-10188109c957", + "width": 3990, + "x": -1513, + "y": 15754, + "zOrder": 12643533, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2450, + "layer": "", + "name": "sand_1", + "persistentUuid": "6230abd0-6579-4dcb-834c-7b77cef09ba9", + "width": 140, + "x": -1513, + "y": 13304, + "zOrder": 12643534, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2450, + "layer": "", + "name": "sand_1", + "persistentUuid": "95f25d21-5189-43b8-8c1b-18205052b4a8", + "width": 140, + "x": 2337, + "y": 13304, + "zOrder": 12643534, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2450, + "layer": "", + "name": "sand_1", + "persistentUuid": "74e387e6-0342-4565-b167-cace2455b622", + "width": 140, + "x": 6467, + "y": 13304, + "zOrder": 12643534, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2450, + "layer": "", + "name": "sand_1", + "persistentUuid": "c435ac4c-4fe5-40c6-8719-67c72fc1fd06", + "width": 140, + "x": 3107, + "y": 13304, + "zOrder": 12643534, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "b50d38bb-3165-4214-81ea-cb832810defd", + "width": 3500, + "x": 3107, + "y": 13164, + "zOrder": 12643535, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "2f43f565-f5d6-4cdd-8a54-9bd548df1603", + "width": 3500, + "x": 3107, + "y": 15754, + "zOrder": 12643535, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "819abbf3-cc87-4434-ab43-78234f33d6c9", + "width": 3500, + "x": 3107, + "y": 16524, + "zOrder": 12643535, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "b5b85eb4-7ba1-4190-a3a1-a98c9f9b5a3e", + "width": 3500, + "x": 3107, + "y": 19044, + "zOrder": 12643535, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "sand_1", + "persistentUuid": "bb6e898a-5370-44c8-a295-97c10d44462d", + "width": 140, + "x": 6467, + "y": 16664, + "zOrder": 12643536, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "sand_1", + "persistentUuid": "d9c7ff89-7af0-4c49-9b72-185434e486b2", + "width": 140, + "x": 3107, + "y": 16664, + "zOrder": 12643537, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "c8990fce-7a56-46f1-97db-d061e430dccc", + "width": 1470, + "x": 5207, + "y": 10504, + "zOrder": 12643538, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "sand_1", + "persistentUuid": "c0dd577e-d395-4347-888d-60c0b38d0ef4", + "width": 140, + "x": 5207, + "y": 10644, + "zOrder": 12643539, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "sand_1", + "persistentUuid": "ab2f7d22-5399-48f3-bc20-d94fe395a262", + "width": 140, + "x": 6537, + "y": 10644, + "zOrder": 12643540, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "116037d8-825f-40e0-aaf4-67f1273a2265", + "width": 1190, + "x": 5347, + "y": 12394, + "zOrder": 12643541, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "8f2ac265-16f3-430d-bdc6-2399a7ed959a", + "width": 140, + "x": 7097, + "y": 16524, + "zOrder": 12643542, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "sand_1", + "persistentUuid": "cf279e71-d62c-4970-ad18-e4969d27b2cf", + "width": 140, + "x": 9197, + "y": 16524, + "zOrder": 12643543, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "52dba824-11a6-4c4d-811d-5aabfa3c3ffb", + "width": 1960, + "x": 7237, + "y": 16524, + "zOrder": 12643544, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "d9d45352-f874-4643-9035-435f8f36ba37", + "width": 1960, + "x": 7237, + "y": 17854, + "zOrder": 12643545, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "5007283d-5eae-4a1d-bcb1-c5ed1c56448b", + "width": 2240, + "x": 7097, + "y": 14494, + "zOrder": 12643546, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "name": "sand_1", + "persistentUuid": "4d63c600-abc0-4022-9d3d-927b478b4ad1", + "width": 140, + "x": 9197, + "y": 14634, + "zOrder": 12643547, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "name": "sand_1", + "persistentUuid": "8ca98505-ea24-47cd-8de9-9e6c4c609ac1", + "width": 140, + "x": 7097, + "y": 14634, + "zOrder": 12643548, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "2eadf1ec-5b43-4057-9ef8-4ab0dbf1c70c", + "width": 1960, + "x": 7237, + "y": 15754, + "zOrder": 12643549, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "6e245ec4-cc4f-43bb-a442-59b129787a36", + "width": 2240, + "x": 7097, + "y": 13164, + "zOrder": 12643550, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "fd76fa2e-0bd8-4456-820f-c4275401beeb", + "width": 2240, + "x": 7097, + "y": 14004, + "zOrder": 12643551, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 700, + "layer": "", + "name": "sand_1", + "persistentUuid": "5357890f-0ee4-4590-8fc8-839cec3ad892", + "width": 140, + "x": 9197, + "y": 13304, + "zOrder": 12643552, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 700, + "layer": "", + "name": "sand_1", + "persistentUuid": "3a786521-7d0c-4b02-ab41-495fe694a282", + "width": 140, + "x": 7097, + "y": 13304, + "zOrder": 12643553, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "3e0c54a2-443d-486e-a954-2b80eae4574c", + "width": 140, + "x": 7027, + "y": 10504, + "zOrder": 12643554, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "9e3257ba-4ad2-4c46-af5f-4823b5f2e872", + "width": 140, + "x": 9197, + "y": 10504, + "zOrder": 12643554, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "e91776ea-2eb7-4885-902f-119b93807770", + "width": 2030, + "x": 7167, + "y": 10504, + "zOrder": 12643555, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "7005749c-fbeb-4f9c-8e8c-84961ba892de", + "width": 2030, + "x": 7167, + "y": 12394, + "zOrder": 12643556, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "cc6ffb96-1e8a-45d7-b263-f8fde4c9f3fc", + "width": 140, + "x": 4717, + "y": 10504, + "zOrder": 12643557, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "sand_1", + "persistentUuid": "f6b2b1e0-5b55-4339-acb7-3a1b59d88e4e", + "width": 140, + "x": 3107, + "y": 10504, + "zOrder": 12643558, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "c0f7019f-7999-447f-8881-cc1d339c69ea", + "width": 1470, + "x": 3247, + "y": 10504, + "zOrder": 12643559, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sand_1", + "persistentUuid": "9299093a-fb73-4504-91de-7bbe1dcf1d65", + "width": 1470, + "x": 3247, + "y": 12394, + "zOrder": 12643560, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "d5f992a0-80ac-4994-9c02-911792e49cf4", + "width": 0, + "x": -43, + "y": 5464, + "zOrder": 12643565, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "47342f71-8a39-4538-a15f-c98418f5f4c0", + "width": 0, + "x": -673, + "y": 10994, + "zOrder": 12643566, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "sand_1", + "persistentUuid": "538c636f-7884-418d-aae6-ee3e7855b3e8", + "width": 420, + "x": 237, + "y": 10644, + "zOrder": 1264367, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "roof_tops", + "persistentUuid": "33702ba3-544c-4097-b727-654cc2b2b755", + "width": 700, + "x": 5277, + "y": 4484, + "zOrder": 12643567, + "numberProperties": [ + { + "name": "animation", + "value": 12 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "b383251f-797a-46d1-9b8a-659fad130da4", + "width": 0, + "x": 6817, + "y": 3014, + "zOrder": 12643568, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "1685b4a6-1742-4a8d-9f8f-072d23611301", + "width": 0, + "x": 6817, + "y": 2104, + "zOrder": 12643568, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "50d36d65-4c6d-4ce3-a526-49ed54a29c78", + "width": 0, + "x": 6817, + "y": 4414, + "zOrder": 12643568, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "46ceb4ce-c2a3-4147-ab7f-3fd30373a897", + "width": 0, + "x": 6817, + "y": 6164, + "zOrder": 12643568, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "3401b266-78ff-4af4-bea3-6f9a5373ab47", + "width": 0, + "x": 6817, + "y": 5274, + "zOrder": 12643568, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 630, + "layer": "", + "name": "roof_tops", + "persistentUuid": "ded75ffd-1430-4a12-b1dc-e47e2cd3912d", + "width": 1190, + "x": 5067, + "y": 7984, + "zOrder": 12643569, + "numberProperties": [ + { + "name": "animation", + "value": 14 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 630, + "layer": "", + "name": "roof_tops", + "persistentUuid": "c1f118e4-de1a-4c5f-9abe-6225f16fb71a", + "width": 1190, + "x": 6327, + "y": 7984, + "zOrder": 12643569, + "numberProperties": [ + { + "name": "animation", + "value": 14 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "roof_tops", + "persistentUuid": "2dd273ea-ba7f-413d-a072-f1106e93aaaf", + "width": 980, + "x": 5137, + "y": 9104, + "zOrder": 12643570, + "numberProperties": [ + { + "name": "animation", + "value": 15 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "roof_tops", + "persistentUuid": "384584b1-7dae-48ad-880c-ed1edb4da938", + "width": 980, + "x": 6397, + "y": 9104, + "zOrder": 12643570, + "numberProperties": [ + { + "name": "animation", + "value": 15 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 840, + "layer": "", + "name": "roof_tops", + "persistentUuid": "429c8877-5a23-4cf3-b1cf-bfe610f2bd64", + "width": 1050, + "x": 5417, + "y": 10714, + "zOrder": 12643571, + "numberProperties": [ + { + "name": "animation", + "value": 16 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "62ddddef-3910-4b63-968a-9ecb87d7e05c", + "width": 0, + "x": 5487, + "y": 11694, + "zOrder": 12643572, + "numberProperties": [ + { + "name": "animation", + "value": 17 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 980, + "layer": "", + "name": "roof_tops", + "persistentUuid": "434af808-7fd8-462d-a911-0c477b459206", + "width": 1680, + "x": 7377, + "y": 14704, + "zOrder": 12643572, + "numberProperties": [ + { + "name": "animation", + "value": 18 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 560, + "layer": "", + "name": "roof_tops", + "persistentUuid": "042fc3c8-943e-495e-8d2e-b39e041ebdfc", + "width": 560, + "x": 7307, + "y": 13374, + "zOrder": 12643573, + "numberProperties": [ + { + "name": "animation", + "value": 19 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 560, + "layer": "", + "name": "roof_tops", + "persistentUuid": "6400a9b6-26e1-471d-a843-1fda155032cb", + "width": 560, + "x": 8567, + "y": 13374, + "zOrder": 12643573, + "numberProperties": [ + { + "name": "animation", + "value": 19 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 560, + "layer": "", + "name": "roof_tops", + "persistentUuid": "257db060-53f6-47de-a89b-40d3662b97f1", + "width": 560, + "x": 7937, + "y": 13374, + "zOrder": 12643573, + "numberProperties": [ + { + "name": "animation", + "value": 19 + } + ], + "stringProperties": [], + "initialVariables": [] + } + ], + "editionSettings": { + "grid": false, + "gridType": "rectangular", + "gridWidth": 32, + "gridHeight": 32, + "gridOffsetX": 0, + "gridOffsetY": 0, + "gridColor": 10401023, + "gridAlpha": 0.8, + "snap": false, + "zoomFactor": 0.2745098039215695, + "windowMask": false + } +} \ No newline at end of file diff --git a/src/game.json b/src/game.json index c1d05bdf2..f20c788ca 100644 --- a/src/game.json +++ b/src/game.json @@ -2735,11 +2735,7 @@ }, { "__REFERENCE_TO_SPLIT_OBJECT": true, - "referenceTo": "/layouts/loading" - }, - { - "__REFERENCE_TO_SPLIT_OBJECT": true, - "referenceTo": "/layouts/city1" + "referenceTo": "/layouts/city" }, { "__REFERENCE_TO_SPLIT_OBJECT": true, @@ -2752,6 +2748,10 @@ { "__REFERENCE_TO_SPLIT_OBJECT": true, "referenceTo": "/layouts/functionsincludes" + }, + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/layouts/loading" } ], "externalEvents": [ @@ -2761,7 +2761,7 @@ }, { "__REFERENCE_TO_SPLIT_OBJECT": true, - "referenceTo": "/externalEvents/niko" + "referenceTo": "/externalEvents/player" }, { "__REFERENCE_TO_SPLIT_OBJECT": true, @@ -2782,9 +2782,25 @@ { "__REFERENCE_TO_SPLIT_OBJECT": true, "referenceTo": "/externalEvents/crossair" + }, + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/externalEvents/sea" + }, + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/externalEvents/sports" } ], "eventsFunctionsExtensions": [ + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/eventsFunctionsExtensions/sticker" + }, + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/eventsFunctionsExtensions/isonscreen" + }, { "__REFERENCE_TO_SPLIT_OBJECT": true, "referenceTo": "/eventsFunctionsExtensions/alignobject" @@ -2826,6 +2842,11 @@ "referenceTo": "/eventsFunctionsExtensions/debugmessages" } ], - "externalLayouts": [], + "externalLayouts": [ + { + "__REFERENCE_TO_SPLIT_OBJECT": true, + "referenceTo": "/externalLayouts/city2" + } + ], "externalSourceFiles": [] } \ No newline at end of file diff --git a/src/layouts/city.json b/src/layouts/city.json new file mode 100644 index 000000000..4fc220629 --- /dev/null +++ b/src/layouts/city.json @@ -0,0 +1,62279 @@ +{ + "b": 209, + "disableInputWhenNotFocused": true, + "mangledName": "City", + "name": "City", + "r": 209, + "standardSortMethod": true, + "stopSoundsOnStartup": true, + "title": "", + "v": 209, + "uiSettings": { + "grid": true, + "gridType": "rectangular", + "gridWidth": 70, + "gridHeight": 70, + "gridOffsetX": 0, + "gridOffsetY": 0, + "gridColor": 10401023, + "gridAlpha": 0.8, + "snap": true, + "zoomFactor": 0.43803898987150824, + "windowMask": false + }, + "objectsGroups": [ + { + "name": "bullet_obstacles", + "objects": [ + { + "name": "roof_tops" + }, + { + "name": "Fences" + }, + { + "name": "road_block" + }, + { + "name": "foliage" + } + ] + }, + { + "name": "doors", + "objects": [ + { + "name": "door" + } + ] + }, + { + "name": "North_doors", + "objects": [ + { + "name": "door" + } + ] + }, + { + "name": "West_doors", + "objects": [] + }, + { + "name": "South_doors", + "objects": [] + }, + { + "name": "East_doors", + "objects": [] + }, + { + "name": "Phone_status_bar", + "objects": [ + { + "name": "phone_battery" + }, + { + "name": "phone_wifi" + }, + { + "name": "phone_time" + } + ] + } + ], + "variables": [ + { + "name": "fade", + "type": "string", + "value": "" + }, + { + "name": "walk_in_west", + "type": "string", + "value": "" + }, + { + "name": "walk_in_north", + "type": "string", + "value": "" + }, + { + "name": "separate", + "type": "string", + "value": "" + }, + { + "name": "walk_in_south", + "type": "string", + "value": "" + }, + { + "name": "walk_in_east", + "type": "string", + "value": "" + }, + { + "name": "niko_movement", + "type": "string", + "value": "" + }, + { + "name": "Camera_zoom", + "type": "string", + "value": "" + }, + { + "name": "basketball", + "type": "string", + "value": "" + }, + { + "name": "phone", + "type": "string", + "value": "" + }, + { + "name": "using_phone", + "type": "string", + "value": "" + }, + { + "name": "phone_time", + "type": "string", + "value": "" + }, + { + "name": "godmode", + "type": "boolean", + "value": false + }, + { + "name": "Died_effects_tween", + "type": "string", + "value": "" + } + ], + "instances": [ + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", + "width": 2100, + "x": -3220, + "y": -210, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", + "width": 70, + "x": 910, + "y": -350, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", + "width": 70, + "x": 980, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", + "width": 70, + "x": 1470, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", + "width": 70, + "x": 1330, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", + "width": 70, + "x": 1260, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", + "width": 70, + "x": 1190, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", + "width": 70, + "x": 1120, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", + "width": 70, + "x": 1050, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", + "width": 70, + "x": 1190, + "y": 70, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", + "width": 70, + "x": 1400, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", + "width": 70, + "x": 1190, + "y": 140, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", + "width": 70, + "x": 1470, + "y": -280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", + "width": 70, + "x": 1470, + "y": -70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", + "width": 70, + "x": 1470, + "y": 0, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", + "width": 70, + "x": 1470, + "y": 70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", + "width": 70, + "x": 1470, + "y": 140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", + "width": 70, + "x": 1470, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", + "width": 70, + "x": 1470, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", + "width": 70, + "x": 1470, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", + "width": 70, + "x": 910, + "y": -280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", + "width": 70, + "x": 910, + "y": -70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", + "width": 70, + "x": 910, + "y": 0, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", + "width": 70, + "x": 910, + "y": 70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", + "width": 70, + "x": 910, + "y": 140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", + "width": 70, + "x": 910, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", + "width": 70, + "x": 910, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", + "width": 70, + "x": 910, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "road", + "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", + "width": 210, + "x": 1260, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", + "width": 210, + "x": 980, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", + "width": 70, + "x": 1190, + "y": -140, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", + "width": 70, + "x": 1190, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", + "width": 70, + "x": 1190, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", + "width": 70, + "x": 1190, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", + "width": 70, + "x": 1190, + "y": 0, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", + "width": 70, + "x": 1190, + "y": -70, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", + "width": 70, + "x": 1190, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", + "width": 70, + "x": 1190, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", + "width": 70, + "x": 1190, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", + "width": 70, + "x": 1190, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", + "width": 70, + "x": 1190, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", + "width": 70, + "x": 1190, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", + "width": 70, + "x": 1190, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", + "width": 70, + "x": 1190, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", + "width": 70, + "x": 1190, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", + "width": 70, + "x": 1190, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", + "width": 70, + "x": 1190, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", + "width": 70, + "x": 1190, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", + "width": 70, + "x": 910, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", + "width": 70, + "x": 1470, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", + "width": 70, + "x": 1470, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", + "width": 70, + "x": 1470, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", + "width": 70, + "x": 1470, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", + "width": 70, + "x": 1470, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", + "width": 70, + "x": 1470, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", + "width": 70, + "x": 1470, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", + "width": 70, + "x": 1470, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", + "width": 70, + "x": 1470, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", + "width": 70, + "x": 1470, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", + "width": 70, + "x": 1470, + "y": 1120, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", + "width": 70, + "x": 1470, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", + "width": 70, + "x": 910, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", + "width": 70, + "x": 910, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", + "width": 70, + "x": 910, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", + "width": 70, + "x": 910, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", + "width": 70, + "x": 910, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", + "width": 70, + "x": 910, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", + "width": 70, + "x": 910, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", + "width": 70, + "x": 910, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", + "width": 70, + "x": 910, + "y": 1190, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", + "width": 70, + "x": 910, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", + "width": 70, + "x": 910, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", + "width": 70, + "x": 910, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", + "width": 70, + "x": 420, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", + "width": 70, + "x": 770, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", + "width": 70, + "x": 700, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", + "width": 70, + "x": 630, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", + "width": 70, + "x": 560, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", + "width": 70, + "x": 490, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", + "width": 70, + "x": 840, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", + "width": 70, + "x": 1190, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", + "width": 70, + "x": 1190, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", + "width": 70, + "x": 1190, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", + "width": 1260, + "x": -70, + "y": 1330, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", + "width": 70, + "x": 420, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", + "width": 70, + "x": 490, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", + "width": 70, + "x": 560, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", + "width": 70, + "x": 630, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", + "width": 70, + "x": 700, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", + "width": 70, + "x": 770, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", + "width": 70, + "x": 840, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", + "width": 70, + "x": 910, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", + "width": 70, + "x": 980, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", + "width": 70, + "x": 1050, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", + "width": 1610, + "x": -420, + "y": 1610, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", + "width": 280, + "x": 1190, + "y": 1610, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", + "width": 70, + "x": 1470, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", + "width": 70, + "x": 1470, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", + "width": 70, + "x": 1470, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", + "width": 70, + "x": 1470, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", + "width": 70, + "x": 1470, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", + "width": 70, + "x": 1470, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", + "width": 70, + "x": 1470, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", + "width": 70, + "x": 980, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", + "width": 70, + "x": 1330, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", + "width": 70, + "x": 1260, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", + "width": 70, + "x": 1190, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", + "width": 70, + "x": 1120, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", + "width": 70, + "x": 1050, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", + "width": 70, + "x": 1400, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", + "width": 70, + "x": 840, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", + "width": 70, + "x": 770, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", + "width": 70, + "x": 700, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", + "width": 70, + "x": 630, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", + "width": 70, + "x": 560, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", + "width": 70, + "x": 910, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", + "width": 70, + "x": 1470, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", + "width": 70, + "x": 1190, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", + "width": 70, + "x": 1190, + "y": 1470, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", + "width": 70, + "x": 1120, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", + "width": 70, + "x": 420, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", + "width": 70, + "x": 490, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", + "width": 70, + "x": 1470, + "y": 1820, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", + "width": 1820, + "x": 1540, + "y": -420, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", + "sealed": true, + "width": 3360, + "x": -140, + "y": 1890, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", + "width": 70, + "x": -70, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", + "width": 70, + "x": 280, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", + "width": 70, + "x": 210, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", + "width": 70, + "x": 140, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", + "width": 70, + "x": 70, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", + "width": 70, + "x": 0, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", + "width": 70, + "x": 350, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", + "width": 70, + "x": -70, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", + "width": 70, + "x": 0, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", + "width": 70, + "x": 70, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", + "width": 70, + "x": 140, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", + "width": 70, + "x": 210, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", + "width": 70, + "x": 280, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", + "width": 70, + "x": 350, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", + "width": 70, + "x": 350, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", + "width": 70, + "x": 280, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", + "width": 70, + "x": 210, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", + "width": 70, + "x": 140, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", + "width": 70, + "x": 70, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", + "width": 70, + "x": -70, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", + "width": 70, + "x": 0, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", + "width": 630, + "x": -700, + "y": 1330, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", + "width": 70, + "x": -770, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", + "width": 70, + "x": -770, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", + "width": 70, + "x": -770, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", + "width": 70, + "x": -770, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", + "width": 70, + "x": -770, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", + "width": 70, + "x": -770, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", + "width": 70, + "x": -630, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", + "width": 70, + "x": -280, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", + "width": 70, + "x": -350, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", + "width": 70, + "x": -420, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", + "width": 70, + "x": -490, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", + "width": 70, + "x": -560, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", + "width": 70, + "x": -210, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", + "width": 70, + "x": -700, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", + "width": 70, + "x": -770, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", + "width": 70, + "x": -770, + "y": 1820, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", + "width": 70, + "x": -770, + "y": 1260, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", + "width": 70, + "x": -140, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", + "width": 70, + "x": -350, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", + "width": 70, + "x": -280, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", + "width": 70, + "x": -210, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", + "width": 70, + "x": -140, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", + "width": 70, + "x": -490, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "road", + "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", + "width": 210, + "x": -700, + "y": 1540, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 630, + "layer": "", + "name": "road", + "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", + "width": 210, + "x": -420, + "y": 1820, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", + "width": 70, + "x": -210, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", + "width": 70, + "x": -210, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", + "width": 70, + "x": -210, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", + "width": 70, + "x": -210, + "y": 2100, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", + "width": 70, + "x": -210, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", + "width": 70, + "x": -140, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", + "width": 70, + "x": -210, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", + "width": 70, + "x": -210, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", + "width": 70, + "x": -210, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", + "width": 70, + "x": -210, + "y": 2380, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", + "width": 70, + "x": -770, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", + "width": 70, + "x": -770, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", + "width": 70, + "x": -770, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", + "width": 70, + "x": -770, + "y": 2100, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", + "width": 70, + "x": -770, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", + "width": 70, + "x": -770, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", + "width": 70, + "x": -770, + "y": 2310, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", + "width": 70, + "x": -490, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", + "width": 70, + "x": -490, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", + "width": 70, + "x": -420, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", + "width": 70, + "x": -490, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", + "width": 70, + "x": -490, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", + "width": 70, + "x": -490, + "y": 2100, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", + "width": 70, + "x": -490, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", + "width": 70, + "x": -490, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", + "width": 70, + "x": -490, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", + "width": 70, + "x": -490, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", + "width": 70, + "x": -490, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", + "width": 70, + "x": -490, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", + "width": 70, + "x": -770, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", + "width": 70, + "x": -490, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", + "width": 70, + "x": -490, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", + "width": 70, + "x": -490, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", + "width": 70, + "x": -1820, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", + "width": 70, + "x": -700, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", + "width": 70, + "x": -630, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", + "width": 280, + "x": -490, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", + "width": 70, + "x": -210, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", + "width": 70, + "x": -210, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", + "width": 70, + "x": -210, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", + "width": 70, + "x": -210, + "y": 2660, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", + "width": 70, + "x": -210, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", + "width": 70, + "x": -210, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", + "width": 70, + "x": -210, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", + "width": 70, + "x": -700, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", + "width": 70, + "x": -350, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", + "width": 70, + "x": -420, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", + "width": 70, + "x": -490, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", + "width": 70, + "x": -560, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", + "width": 70, + "x": -630, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", + "width": 70, + "x": -280, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", + "width": 70, + "x": -1820, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", + "width": 70, + "x": -210, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", + "width": 70, + "x": -490, + "y": 2730, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", + "width": 70, + "x": -490, + "y": 2660, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", + "width": 70, + "x": -560, + "y": 2730, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", + "width": 70, + "x": -210, + "y": 3010, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", + "width": 70, + "x": -490, + "y": 2380, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "road", + "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", + "width": 210, + "x": -420, + "y": 2450, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "road", + "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", + "width": 210, + "x": -700, + "y": 2450, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", + "width": 210, + "x": -700, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", + "width": 70, + "x": -2310, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", + "width": 70, + "x": -1960, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", + "width": 70, + "x": -2030, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", + "width": 70, + "x": -2100, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", + "width": 70, + "x": -2170, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", + "width": 70, + "x": -2240, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", + "width": 70, + "x": -1890, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", + "width": 70, + "x": -2310, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", + "width": 70, + "x": -2240, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", + "width": 70, + "x": -2170, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", + "width": 70, + "x": -2100, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", + "width": 70, + "x": -2030, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", + "width": 70, + "x": -1960, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", + "width": 70, + "x": -1890, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", + "width": 70, + "x": -1890, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", + "width": 70, + "x": -1960, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", + "width": 70, + "x": -2030, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", + "width": 70, + "x": -2100, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", + "width": 70, + "x": -2170, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", + "width": 70, + "x": -2310, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", + "width": 70, + "x": -2240, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", + "width": 70, + "x": -2450, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", + "width": 70, + "x": -2520, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", + "width": 70, + "x": -2590, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", + "width": 70, + "x": -2660, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", + "width": 70, + "x": -2730, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", + "width": 70, + "x": -2380, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", + "width": 70, + "x": -2800, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", + "width": 70, + "x": -2730, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", + "width": 70, + "x": -2660, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", + "width": 70, + "x": -2590, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", + "width": 70, + "x": -2520, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", + "width": 70, + "x": -2450, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", + "width": 70, + "x": -2380, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", + "width": 70, + "x": -2380, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", + "width": 70, + "x": -2450, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", + "width": 70, + "x": -2520, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", + "width": 70, + "x": -2590, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", + "width": 70, + "x": -2660, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", + "width": 70, + "x": -2800, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", + "width": 70, + "x": -2730, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", + "width": 2730, + "x": -3430, + "y": 2520, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", + "width": 70, + "x": -3500, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", + "width": 70, + "x": -3500, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", + "width": 70, + "x": -3500, + "y": 2660, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", + "width": 70, + "x": -3500, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", + "width": 70, + "x": -3500, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", + "width": 70, + "x": -3500, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", + "width": 70, + "x": -3360, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", + "width": 70, + "x": -3010, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", + "width": 70, + "x": -3080, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", + "width": 70, + "x": -3150, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", + "width": 70, + "x": -3220, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", + "width": 70, + "x": -3290, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", + "width": 70, + "x": -3430, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", + "width": 70, + "x": -3500, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", + "width": 70, + "x": -3500, + "y": 3010, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", + "width": 70, + "x": -3500, + "y": 2450, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", + "width": 70, + "x": -3080, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", + "width": 70, + "x": -3010, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", + "width": 70, + "x": -2940, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", + "width": 70, + "x": -2870, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", + "width": 70, + "x": -3220, + "y": 2730, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", + "width": 70, + "x": -2870, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", + "width": 70, + "x": -2940, + "y": 3010, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", + "width": 70, + "x": -3220, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", + "width": 70, + "x": -3220, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", + "width": 70, + "x": -3150, + "y": 2730, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", + "width": 70, + "x": -3220, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", + "width": 70, + "x": -3220, + "y": 3010, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", + "width": 70, + "x": -770, + "y": 2380, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", + "width": 70, + "x": -1260, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", + "width": 70, + "x": -910, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", + "width": 70, + "x": -980, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", + "width": 70, + "x": -1050, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", + "width": 70, + "x": -1120, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", + "width": 70, + "x": -1190, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", + "width": 70, + "x": -840, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", + "width": 70, + "x": -1400, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", + "width": 70, + "x": -1470, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", + "width": 70, + "x": -1540, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", + "width": 70, + "x": -1610, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", + "width": 70, + "x": -1680, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", + "width": 70, + "x": -1330, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", + "width": 70, + "x": -1820, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", + "width": 70, + "x": -1750, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", + "width": 70, + "x": -770, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", + "width": 70, + "x": -840, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", + "width": 70, + "x": -910, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", + "width": 70, + "x": -980, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", + "width": 70, + "x": -1050, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", + "width": 70, + "x": -1190, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", + "width": 70, + "x": -1120, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", + "width": 70, + "x": -1260, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", + "width": 70, + "x": -1330, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", + "width": 70, + "x": -1400, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", + "width": 70, + "x": -1470, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", + "width": 70, + "x": -1540, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", + "width": 70, + "x": -1680, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", + "width": 70, + "x": -1610, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", + "width": 70, + "x": -1750, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", + "width": 70, + "x": -840, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", + "width": 70, + "x": -1330, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", + "width": 70, + "x": -1260, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", + "width": 70, + "x": -1190, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", + "width": 70, + "x": -1120, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", + "width": 70, + "x": -1050, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", + "width": 70, + "x": -980, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", + "width": 70, + "x": -910, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", + "width": 70, + "x": -1750, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", + "width": 70, + "x": -1680, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", + "width": 70, + "x": -1610, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", + "width": 70, + "x": -1540, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", + "width": 70, + "x": -1470, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", + "width": 70, + "x": -1400, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", + "width": 70, + "x": -770, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", + "width": 2450, + "x": -3150, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 4900, + "layer": "", + "name": "road", + "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", + "width": 210, + "x": -3430, + "y": 2730, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 4620, + "layer": "", + "name": "road", + "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", + "width": 210, + "x": -3150, + "y": 3010, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", + "width": 2450, + "x": -3220, + "y": 1260, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", + "width": 70, + "x": -2940, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", + "width": 70, + "x": -2940, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", + "width": 70, + "x": -2940, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", + "width": 70, + "x": -2940, + "y": 3290, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", + "width": 70, + "x": -2940, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", + "width": 70, + "x": -2940, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", + "width": 70, + "x": -2940, + "y": 3500, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", + "width": 70, + "x": -2940, + "y": 3570, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", + "width": 70, + "x": -3500, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", + "width": 70, + "x": -3500, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", + "width": 70, + "x": -3500, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", + "width": 70, + "x": -3500, + "y": 3290, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", + "width": 70, + "x": -3500, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", + "width": 70, + "x": -3500, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", + "width": 70, + "x": -3500, + "y": 3500, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", + "width": 70, + "x": -3220, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", + "width": 70, + "x": -3220, + "y": 3290, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", + "width": 70, + "x": -3220, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", + "width": 70, + "x": -3220, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", + "width": 70, + "x": -3220, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", + "width": 70, + "x": -3220, + "y": 3500, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", + "width": 70, + "x": -3220, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", + "width": 70, + "x": -3220, + "y": 3570, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", + "width": 70, + "x": -3500, + "y": 3570, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", + "width": 2730, + "x": -2870, + "y": 3080, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", + "width": 140, + "x": -3780, + "y": 2590, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "Placeholder", + "persistentUuid": "836a213c-8cdb-4941-9c4e-4bd98ce3f7a2", + "width": 0, + "x": -474, + "y": 1561, + "zOrder": 9, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "Player", + "persistentUuid": "70a36631-69a6-4c00-a464-a6e16d80fb3e", + "width": 0, + "x": -108, + "y": 1519, + "zOrder": 10, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", + "width": 70, + "x": 490, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", + "width": 70, + "x": 420, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", + "width": 70, + "x": 490, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", + "width": 70, + "x": 420, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "door", + "persistentUuid": "0cb1981b-95d9-487d-aa05-ed08b983e17a", + "width": 140, + "x": 420, + "y": 780, + "zOrder": 1203, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "1" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "4e812b69-5a12-4e22-ba1c-a240bebf9e91", + "width": 140, + "x": -560, + "y": 630, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "f96e4766-b631-4e90-ab0e-4f80ce881d3c", + "width": 140, + "x": -700, + "y": 630, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a73a07c-8c3e-410d-b7ed-654e7a743421", + "width": 70, + "x": -280, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34ec7312-1e01-466e-934d-6e6681a1bfa8", + "width": 70, + "x": -210, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", + "width": 70, + "x": -280, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", + "width": 70, + "x": -210, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun1", + "persistentUuid": "5a448040-cb9c-49d6-8597-63790fc6f3fb", + "width": 0, + "x": 98, + "y": 1194, + "zOrder": 121, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d7890f6-98cf-4044-a1c8-262c69cb6d46", + "width": 70, + "x": -840, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "42f16f90-784c-422a-aa77-616fdcc4561d", + "width": 70, + "x": -840, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1e2780d-029b-4ec0-9ccb-4fe3dcac0a85", + "width": 70, + "x": -910, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58eced0f-c0fb-421c-98fc-ea739b877fb2", + "width": 70, + "x": -910, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 140, + "layer": "", + "name": "roof_tops", + "persistentUuid": "7f356254-bc0d-47bb-8f49-970e4d2333ef", + "width": 140, + "x": 420, + "y": 700, + "zOrder": 8, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 140, + "layer": "", + "name": "roof_tops", + "persistentUuid": "24c3b475-9d85-487a-8528-e8c0ba748dc5", + "width": 140, + "x": 420, + "y": 840, + "zOrder": 8, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0ca0597-6b2b-487f-8211-f84a6503286f", + "width": 70, + "x": -840, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d5f124b0-9028-454d-8772-94025a1e26d4", + "width": 70, + "x": -840, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07a0c7de-7be1-4a6f-9c88-98f341bcc48d", + "width": 70, + "x": -910, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76953f35-80de-4db0-8fcc-c8dcd7059986", + "width": 70, + "x": -910, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "02cb8fdd-466a-4a8b-ba79-590d3bf4c75d", + "width": 0, + "x": -70, + "y": 1330, + "zOrder": 108, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "3a7b864c-ab03-4d43-aefa-f7eae6251dc8", + "width": 0, + "x": -140, + "y": 1400, + "zOrder": 109, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "385a36c9-79bb-4c01-b99b-1364069755d3", + "width": 0, + "x": -70, + "y": 1400, + "zOrder": 110, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "AmmoText", + "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", + "width": 0, + "x": -5110, + "y": -5530, + "zOrder": 111, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun2", + "persistentUuid": "91c0c667-36c2-4c98-acb1-ff4aebfefcc9", + "width": 0, + "x": 70, + "y": 1470, + "zOrder": 112, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", + "width": 70, + "x": 770, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", + "width": 70, + "x": 840, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", + "width": 70, + "x": 770, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", + "width": 70, + "x": 840, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", + "width": 70, + "x": 770, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", + "width": 70, + "x": 840, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", + "width": 70, + "x": 770, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", + "width": 70, + "x": 840, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", + "width": 70, + "x": 770, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", + "width": 70, + "x": 840, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", + "width": 70, + "x": 770, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", + "width": 70, + "x": 840, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", + "width": 70, + "x": 770, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", + "width": 70, + "x": 840, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", + "width": 70, + "x": 770, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", + "width": 70, + "x": 840, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", + "width": 70, + "x": 770, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", + "width": 70, + "x": 840, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", + "width": 70, + "x": 770, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", + "width": 70, + "x": 840, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", + "width": 70, + "x": 770, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", + "width": 70, + "x": 840, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", + "width": 70, + "x": 770, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", + "width": 70, + "x": 840, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", + "width": 70, + "x": 770, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", + "width": 70, + "x": 840, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", + "width": 70, + "x": 770, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", + "width": 70, + "x": 840, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", + "width": 70, + "x": 770, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", + "width": 70, + "x": 840, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", + "width": 70, + "x": 770, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", + "width": 70, + "x": 840, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", + "width": 70, + "x": 770, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", + "width": 70, + "x": 840, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", + "width": 70, + "x": 770, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", + "width": 70, + "x": 840, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", + "width": 70, + "x": 770, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", + "width": 70, + "x": 840, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", + "width": 70, + "x": 770, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", + "width": 70, + "x": 840, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", + "width": 70, + "x": 770, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", + "width": 70, + "x": 840, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", + "width": 70, + "x": 1540, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", + "width": 70, + "x": 1610, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", + "width": 70, + "x": 1540, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", + "width": 70, + "x": 1610, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", + "width": 70, + "x": 1540, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", + "width": 70, + "x": 1610, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", + "width": 70, + "x": 1540, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", + "width": 70, + "x": 1610, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", + "width": 70, + "x": 1540, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", + "width": 70, + "x": 1610, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", + "width": 70, + "x": 1540, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", + "width": 70, + "x": 1610, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", + "width": 70, + "x": 1540, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", + "width": 70, + "x": 1610, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", + "width": 70, + "x": 1540, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", + "width": 70, + "x": 1610, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", + "width": 70, + "x": 1540, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", + "width": 70, + "x": 1610, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", + "width": 70, + "x": 1540, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", + "width": 70, + "x": 1610, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", + "width": 70, + "x": 1540, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", + "width": 70, + "x": 1610, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", + "width": 70, + "x": 1540, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", + "width": 70, + "x": 1610, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", + "width": 70, + "x": 1540, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", + "width": 70, + "x": 1610, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", + "width": 70, + "x": 1540, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", + "width": 70, + "x": 1610, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", + "width": 70, + "x": 1540, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", + "width": 70, + "x": 1610, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", + "width": 70, + "x": 1540, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", + "width": 70, + "x": 1610, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", + "width": 70, + "x": 1540, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", + "width": 70, + "x": 1610, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", + "width": 70, + "x": 1540, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", + "width": 70, + "x": 1610, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", + "width": 70, + "x": 1540, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", + "width": 70, + "x": 1610, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", + "width": 70, + "x": 1540, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", + "width": 70, + "x": 1610, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", + "width": 70, + "x": 1540, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", + "width": 70, + "x": 1610, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", + "width": 70, + "x": 1540, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "674a3cb9-d7c1-462f-904e-bfd6565eeefe", + "width": 70, + "x": 1610, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", + "width": 70, + "x": 1540, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", + "width": 70, + "x": 1610, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", + "width": 70, + "x": 1540, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", + "width": 70, + "x": 1610, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", + "width": 70, + "x": 1540, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", + "width": 70, + "x": 1610, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", + "width": 70, + "x": 1540, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", + "width": 70, + "x": 1610, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", + "width": 70, + "x": 1540, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", + "width": 70, + "x": 1610, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", + "width": 70, + "x": 1540, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", + "width": 70, + "x": 1610, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f56e8bff-834d-4ffe-ac7a-7ff91078ecdf", + "width": 70, + "x": 1540, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f5c763-dd07-4000-81b4-d1fe11fbd5bf", + "width": 70, + "x": 1610, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", + "width": 70, + "x": 1540, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", + "width": 70, + "x": 1610, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", + "width": 70, + "x": 1540, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", + "width": 70, + "x": 1610, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", + "width": 70, + "x": 1540, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", + "width": 70, + "x": 1610, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", + "width": 70, + "x": -140, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", + "width": 70, + "x": -70, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", + "width": 70, + "x": -140, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", + "width": 70, + "x": -70, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", + "width": 70, + "x": 0, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", + "width": 70, + "x": 70, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", + "width": 70, + "x": 0, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", + "width": 70, + "x": 70, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", + "width": 70, + "x": 140, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", + "width": 70, + "x": 210, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", + "width": 70, + "x": 140, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", + "width": 70, + "x": 210, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", + "width": 70, + "x": 280, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", + "width": 70, + "x": 350, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", + "width": 70, + "x": 280, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", + "width": 70, + "x": 350, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", + "width": 70, + "x": 420, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", + "width": 70, + "x": 490, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", + "width": 70, + "x": 420, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", + "width": 70, + "x": 490, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", + "width": 70, + "x": 560, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", + "width": 70, + "x": 630, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", + "width": 70, + "x": 560, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", + "width": 70, + "x": 630, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", + "width": 70, + "x": 700, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", + "width": 70, + "x": 770, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", + "width": 70, + "x": 700, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", + "width": 70, + "x": 770, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", + "width": 70, + "x": 840, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7247f601-a750-4757-be03-95644999d829", + "width": 70, + "x": 910, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", + "width": 70, + "x": 840, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", + "width": 70, + "x": 910, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", + "width": 70, + "x": 980, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", + "width": 70, + "x": 1050, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", + "width": 70, + "x": 980, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", + "width": 70, + "x": 1050, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", + "width": 70, + "x": 1120, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", + "width": 70, + "x": 1190, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", + "width": 70, + "x": 1120, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", + "width": 70, + "x": 1190, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", + "width": 70, + "x": 1260, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", + "width": 70, + "x": 1330, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", + "width": 70, + "x": 1260, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", + "width": 70, + "x": 1330, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", + "width": 70, + "x": 1400, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc092547-6921-461e-8626-545397380833", + "width": 70, + "x": 1470, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", + "width": 70, + "x": 1400, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", + "width": 70, + "x": 1470, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", + "width": 70, + "x": 420, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", + "width": 70, + "x": 490, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", + "width": 70, + "x": 490, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", + "width": 70, + "x": 420, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", + "width": 70, + "x": 630, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", + "width": 70, + "x": 700, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", + "width": 70, + "x": 630, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", + "width": 70, + "x": 700, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", + "width": 70, + "x": 280, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", + "width": 70, + "x": 350, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", + "width": 70, + "x": 280, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", + "width": 70, + "x": 350, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", + "width": 70, + "x": 560, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", + "width": 70, + "x": 560, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", + "width": 70, + "x": -210, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", + "width": 70, + "x": -280, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", + "width": 70, + "x": -280, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", + "width": 70, + "x": -210, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", + "width": 70, + "x": 0, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", + "width": 70, + "x": 70, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", + "width": 70, + "x": 0, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", + "width": 70, + "x": 70, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", + "width": 70, + "x": 140, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", + "width": 70, + "x": 210, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", + "width": 70, + "x": 140, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", + "width": 70, + "x": 210, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", + "width": 70, + "x": -350, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", + "width": 70, + "x": -140, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", + "width": 70, + "x": -350, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", + "width": 70, + "x": -140, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", + "width": 70, + "x": -490, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", + "width": 70, + "x": -420, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", + "width": 70, + "x": -490, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", + "width": 70, + "x": -420, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", + "width": 70, + "x": -630, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", + "width": 70, + "x": -560, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", + "width": 70, + "x": -630, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", + "width": 70, + "x": -560, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", + "width": 70, + "x": -910, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", + "width": 70, + "x": -70, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", + "width": 70, + "x": -910, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", + "width": 70, + "x": -70, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", + "width": 70, + "x": -770, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", + "width": 70, + "x": -700, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", + "width": 70, + "x": -770, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", + "width": 70, + "x": -700, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", + "width": 70, + "x": 560, + "y": 1050, + "zOrder": 115, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", + "width": 70, + "x": 630, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", + "width": 70, + "x": 700, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", + "width": 70, + "x": 700, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", + "width": 70, + "x": 700, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", + "width": 70, + "x": 700, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", + "width": 70, + "x": 700, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", + "width": 70, + "x": 700, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", + "width": 70, + "x": 700, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", + "width": 70, + "x": 700, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", + "width": 70, + "x": 700, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", + "width": 70, + "x": 700, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", + "width": 70, + "x": 560, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", + "width": 70, + "x": 630, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", + "width": 70, + "x": 420, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", + "width": 70, + "x": 490, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", + "width": 70, + "x": 280, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [ + { + "name": "Id", + "type": "string", + "value": "1" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", + "width": 70, + "x": 350, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", + "width": 70, + "x": 140, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", + "width": 70, + "x": 210, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", + "width": 70, + "x": 0, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", + "width": 70, + "x": 0, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", + "width": 70, + "x": 0, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", + "width": 70, + "x": 0, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", + "width": 70, + "x": 0, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", + "width": 70, + "x": 0, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", + "width": 70, + "x": 0, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", + "width": 70, + "x": 0, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", + "width": 70, + "x": 0, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", + "width": 70, + "x": 70, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", + "width": 70, + "x": 0, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", + "width": 70, + "x": 140, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", + "width": 70, + "x": 70, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", + "width": 70, + "x": 280, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", + "width": 70, + "x": 210, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", + "width": 70, + "x": 350, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", + "width": 70, + "x": 0, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", + "width": 70, + "x": -210, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", + "width": 70, + "x": -140, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", + "width": 70, + "x": -350, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", + "width": 70, + "x": -280, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", + "width": 70, + "x": -490, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", + "width": 70, + "x": -420, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", + "width": 70, + "x": -630, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", + "width": 70, + "x": -560, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", + "width": 70, + "x": -700, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", + "width": 70, + "x": -910, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", + "width": 70, + "x": -840, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", + "width": 70, + "x": -770, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", + "width": 70, + "x": -910, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", + "width": 70, + "x": -910, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", + "width": 70, + "x": -910, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", + "width": 70, + "x": -910, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", + "width": 70, + "x": -910, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", + "width": 70, + "x": -910, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", + "width": 70, + "x": -910, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", + "width": 70, + "x": -910, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", + "width": 70, + "x": -910, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", + "width": 70, + "x": -840, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", + "width": 70, + "x": -770, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", + "width": 70, + "x": -700, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", + "width": 70, + "x": -630, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", + "width": 70, + "x": -490, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", + "width": 70, + "x": -420, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", + "width": 70, + "x": -560, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", + "width": 70, + "x": 0, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", + "width": 70, + "x": -140, + "y": 1050, + "zOrder": 115, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", + "width": 70, + "x": -350, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", + "width": 70, + "x": -980, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", + "width": 70, + "x": -980, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", + "width": 70, + "x": -1050, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", + "width": 70, + "x": -1050, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", + "width": 70, + "x": -1050, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", + "width": 70, + "x": -1050, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", + "width": 70, + "x": -980, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", + "width": 70, + "x": -980, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", + "width": 70, + "x": -840, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", + "width": 70, + "x": -840, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", + "width": 70, + "x": -910, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", + "width": 70, + "x": -840, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", + "width": 70, + "x": -840, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", + "width": 70, + "x": -910, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", + "width": 70, + "x": -910, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", + "width": 70, + "x": -910, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", + "width": 70, + "x": -840, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", + "width": 70, + "x": -840, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", + "width": 70, + "x": -910, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", + "width": 70, + "x": -910, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", + "width": 70, + "x": -840, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", + "width": 70, + "x": -840, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", + "width": 70, + "x": -910, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", + "width": 70, + "x": -840, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", + "width": 70, + "x": -840, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", + "width": 70, + "x": -910, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", + "width": 70, + "x": -910, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", + "width": 70, + "x": -910, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", + "width": 70, + "x": -840, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", + "width": 70, + "x": -840, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", + "width": 70, + "x": -910, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", + "width": 70, + "x": -910, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", + "width": 70, + "x": -840, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", + "width": 70, + "x": -840, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", + "width": 70, + "x": -910, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", + "width": 70, + "x": -840, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", + "width": 70, + "x": -140, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", + "width": 70, + "x": -70, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", + "width": 70, + "x": -70, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", + "width": 70, + "x": -140, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", + "width": 70, + "x": -140, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", + "width": 70, + "x": -70, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", + "width": 70, + "x": -70, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", + "width": 70, + "x": -140, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", + "width": 70, + "x": -140, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", + "width": 70, + "x": -70, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", + "width": 70, + "x": -140, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", + "width": 70, + "x": -70, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", + "width": 70, + "x": -70, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", + "width": 70, + "x": -140, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", + "width": 70, + "x": -140, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", + "width": 70, + "x": -70, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", + "width": 70, + "x": -70, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", + "width": 70, + "x": -140, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", + "width": 70, + "x": -140, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", + "width": 70, + "x": -70, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", + "width": 70, + "x": -140, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", + "width": 70, + "x": -70, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", + "width": 70, + "x": -70, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", + "width": 70, + "x": -140, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", + "width": 70, + "x": -140, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", + "width": 70, + "x": -70, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", + "width": 70, + "x": -70, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", + "width": 70, + "x": -140, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", + "width": 70, + "x": -140, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", + "width": 70, + "x": -70, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", + "width": 70, + "x": -2030, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", + "width": 70, + "x": -1960, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", + "width": 70, + "x": -2030, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", + "width": 70, + "x": -1960, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", + "width": 70, + "x": -1890, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", + "width": 70, + "x": -1820, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", + "width": 70, + "x": -1890, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", + "width": 70, + "x": -1820, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", + "width": 70, + "x": -1750, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", + "width": 70, + "x": -1680, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", + "width": 70, + "x": -1750, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", + "width": 70, + "x": -1680, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", + "width": 70, + "x": -1610, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", + "width": 70, + "x": -1540, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", + "width": 70, + "x": -1610, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", + "width": 70, + "x": -1540, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", + "width": 70, + "x": -1470, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", + "width": 70, + "x": -1400, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", + "width": 70, + "x": -1470, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", + "width": 70, + "x": -1400, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", + "width": 70, + "x": -1330, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", + "width": 70, + "x": -1260, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", + "width": 70, + "x": -1330, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", + "width": 70, + "x": -1260, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", + "width": 70, + "x": -1190, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", + "width": 70, + "x": -1120, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", + "width": 70, + "x": -1190, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", + "width": 70, + "x": -1120, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", + "width": 70, + "x": -1050, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", + "width": 70, + "x": -980, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", + "width": 70, + "x": -1050, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", + "width": 70, + "x": -980, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", + "width": 70, + "x": -3150, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", + "width": 70, + "x": -3080, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", + "width": 70, + "x": -3150, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", + "width": 70, + "x": -3080, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", + "width": 70, + "x": -3010, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", + "width": 70, + "x": -3010, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", + "width": 70, + "x": -2730, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", + "width": 70, + "x": -2660, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", + "width": 70, + "x": -2730, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", + "width": 70, + "x": -2660, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", + "width": 70, + "x": -2590, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", + "width": 70, + "x": -2520, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", + "width": 70, + "x": -2590, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", + "width": 70, + "x": -2520, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", + "width": 70, + "x": -2450, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", + "width": 70, + "x": -2380, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", + "width": 70, + "x": -2450, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", + "width": 70, + "x": -2380, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", + "width": 70, + "x": -2310, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", + "width": 70, + "x": -2240, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", + "width": 70, + "x": -2310, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", + "width": 70, + "x": -2240, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", + "width": 70, + "x": -2170, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", + "width": 70, + "x": -2100, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", + "width": 70, + "x": -2170, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", + "width": 70, + "x": -2100, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", + "width": 70, + "x": -1120, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", + "width": 70, + "x": -1050, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", + "width": 70, + "x": -1120, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", + "width": 70, + "x": -1050, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", + "width": 70, + "x": -980, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", + "width": 70, + "x": -910, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", + "width": 70, + "x": -980, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", + "width": 70, + "x": -910, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", + "width": 70, + "x": -840, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", + "width": 70, + "x": -770, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", + "width": 70, + "x": -840, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", + "width": 70, + "x": -770, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", + "width": 70, + "x": -700, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", + "width": 70, + "x": -630, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", + "width": 70, + "x": -700, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", + "width": 70, + "x": -630, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", + "width": 70, + "x": -560, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", + "width": 70, + "x": -490, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", + "width": 70, + "x": -560, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", + "width": 70, + "x": -490, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", + "width": 70, + "x": -420, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", + "width": 70, + "x": -350, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", + "width": 70, + "x": -420, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", + "width": 70, + "x": -350, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", + "width": 70, + "x": -280, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", + "width": 70, + "x": -210, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", + "width": 70, + "x": -280, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", + "width": 70, + "x": -210, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", + "width": 70, + "x": -140, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", + "width": 70, + "x": -70, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", + "width": 70, + "x": -140, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", + "width": 70, + "x": -70, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", + "width": 70, + "x": -2240, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", + "width": 70, + "x": -2170, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", + "width": 70, + "x": -2240, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", + "width": 70, + "x": -2170, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", + "width": 70, + "x": -2100, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", + "width": 70, + "x": -2030, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", + "width": 70, + "x": -2100, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", + "width": 70, + "x": -2030, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", + "width": 70, + "x": -1960, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", + "width": 70, + "x": -1890, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", + "width": 70, + "x": -1960, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", + "width": 70, + "x": -1890, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", + "width": 70, + "x": -1820, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", + "width": 70, + "x": -1750, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", + "width": 70, + "x": -1820, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", + "width": 70, + "x": -1750, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52547319-be3b-4d16-85d0-1719cbd0927e", + "width": 70, + "x": -1680, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", + "width": 70, + "x": -1610, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", + "width": 70, + "x": -1680, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", + "width": 70, + "x": -1610, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", + "width": 70, + "x": -1540, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", + "width": 70, + "x": -1470, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", + "width": 70, + "x": -1540, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", + "width": 70, + "x": -1470, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", + "width": 70, + "x": -1400, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", + "width": 70, + "x": -1330, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", + "width": 70, + "x": -1400, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", + "width": 70, + "x": -1330, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", + "width": 70, + "x": -1260, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", + "width": 70, + "x": -1190, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", + "width": 70, + "x": -1260, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", + "width": 70, + "x": -1190, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", + "width": 70, + "x": -70, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", + "width": 70, + "x": -70, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "b09cda94-3c28-44fc-b95a-d49943c138be", + "width": 140, + "x": 140, + "y": 910, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", + "width": 140, + "x": 140, + "y": 630, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "f455fae4-a981-41cb-9f42-ebc230edd898", + "width": 140, + "x": 140, + "y": 770, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", + "width": 140, + "x": -792, + "y": 651, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", + "width": 140, + "x": -792, + "y": 931, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", + "width": 140, + "x": -792, + "y": 791, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", + "width": 70, + "x": -980, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", + "width": 70, + "x": -980, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", + "width": 70, + "x": -980, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", + "width": 70, + "x": -980, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", + "width": 70, + "x": -1470, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", + "width": 70, + "x": -1120, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", + "width": 70, + "x": -1190, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", + "width": 70, + "x": -1050, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", + "width": 70, + "x": -1540, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", + "width": 70, + "x": -1400, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", + "width": 70, + "x": -1330, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", + "width": 70, + "x": -1260, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", + "width": 70, + "x": -1680, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", + "width": 70, + "x": -1680, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", + "width": 70, + "x": -1680, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", + "width": 70, + "x": -1680, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", + "width": 70, + "x": -1680, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", + "width": 70, + "x": -1680, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", + "width": 70, + "x": -1680, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", + "width": 70, + "x": -1680, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", + "width": 70, + "x": -980, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", + "width": 70, + "x": -980, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", + "width": 70, + "x": -980, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", + "width": 70, + "x": -980, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", + "width": 70, + "x": -980, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", + "width": 70, + "x": -1680, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", + "width": 70, + "x": -1680, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", + "width": 70, + "x": -1680, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", + "width": 70, + "x": -1680, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", + "width": 70, + "x": -1680, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", + "width": 70, + "x": -980, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", + "width": 70, + "x": -1680, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", + "width": 70, + "x": -1680, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", + "width": 70, + "x": -1680, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", + "width": 70, + "x": -1680, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", + "width": 70, + "x": -1330, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", + "width": 70, + "x": -1400, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", + "width": 70, + "x": -1470, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", + "width": 70, + "x": -1540, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", + "width": 70, + "x": -1050, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", + "width": 70, + "x": -1120, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", + "width": 70, + "x": -1190, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", + "width": 70, + "x": -1260, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", + "width": 70, + "x": -980, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", + "width": 70, + "x": -980, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", + "width": 140, + "x": -1540, + "y": 1120, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", + "width": 70, + "x": -1680, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", + "width": 70, + "x": -1610, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", + "width": 70, + "x": -1470, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", + "width": 70, + "x": -1120, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", + "width": 70, + "x": -1190, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", + "width": 70, + "x": -1050, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", + "width": 70, + "x": -1540, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", + "width": 70, + "x": -1400, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", + "width": 70, + "x": -1330, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", + "width": 70, + "x": -1260, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", + "width": 70, + "x": -1610, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", + "width": 70, + "x": -1610, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", + "width": 70, + "x": -980, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", + "width": 70, + "x": -980, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", + "width": 70, + "x": -980, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", + "width": 70, + "x": -980, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", + "width": 140, + "x": -1540, + "y": 1330, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", + "width": 140, + "x": -1540, + "y": 1610, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", + "width": 140, + "x": -1540, + "y": 1820, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", + "width": 140, + "x": -1540, + "y": 2170, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", + "width": 70, + "x": -2730, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", + "width": 70, + "x": -2660, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", + "width": 70, + "x": -2730, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", + "width": 70, + "x": -2660, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", + "width": 70, + "x": -2590, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", + "width": 70, + "x": -2520, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", + "width": 70, + "x": -2590, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", + "width": 70, + "x": -2520, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", + "width": 70, + "x": -2450, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", + "width": 70, + "x": -2380, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", + "width": 70, + "x": -2450, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", + "width": 70, + "x": -2380, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", + "width": 70, + "x": -2310, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", + "width": 70, + "x": -2310, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", + "width": 70, + "x": -3500, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", + "width": 70, + "x": -3430, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", + "width": 70, + "x": -3500, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", + "width": 70, + "x": -3430, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", + "width": 70, + "x": -3360, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", + "width": 70, + "x": -3290, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", + "width": 70, + "x": -3360, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", + "width": 70, + "x": -3290, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", + "width": 70, + "x": -3220, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", + "width": 70, + "x": -2870, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", + "width": 70, + "x": -3220, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", + "width": 70, + "x": -2870, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", + "width": 70, + "x": -2800, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", + "width": 70, + "x": -2800, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", + "width": 70, + "x": -3570, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", + "width": 70, + "x": -3640, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", + "width": 70, + "x": -3640, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", + "width": 70, + "x": -3570, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", + "width": 70, + "x": -3640, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", + "width": 70, + "x": -3570, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", + "width": 70, + "x": -3570, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", + "width": 70, + "x": -3640, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", + "width": 70, + "x": -3640, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", + "width": 70, + "x": -3570, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", + "width": 70, + "x": -3570, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", + "width": 70, + "x": -3640, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", + "width": 70, + "x": -3640, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", + "width": 70, + "x": -3570, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", + "width": 70, + "x": -3640, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", + "width": 70, + "x": -3570, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", + "width": 70, + "x": -3640, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", + "width": 70, + "x": -3570, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", + "width": 70, + "x": -3570, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", + "width": 70, + "x": -3640, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", + "width": 70, + "x": -3640, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", + "width": 70, + "x": -3570, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", + "width": 70, + "x": -3640, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", + "width": 70, + "x": -3570, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", + "width": 70, + "x": -3570, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", + "width": 70, + "x": -3640, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", + "width": 70, + "x": -3640, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", + "width": 70, + "x": -3570, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", + "width": 70, + "x": -3570, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", + "width": 70, + "x": -3640, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", + "width": 70, + "x": -3640, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", + "width": 70, + "x": -3570, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", + "width": 70, + "x": -3640, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", + "width": 70, + "x": -3570, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", + "width": 70, + "x": -3640, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", + "width": 70, + "x": -3570, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", + "width": 70, + "x": -2870, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", + "width": 70, + "x": -2800, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", + "width": 70, + "x": -2800, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", + "width": 70, + "x": -2870, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", + "width": 70, + "x": -2870, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", + "width": 70, + "x": -2800, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", + "width": 70, + "x": -2800, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", + "width": 70, + "x": -2870, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", + "width": 70, + "x": -2870, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", + "width": 70, + "x": -2800, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", + "width": 70, + "x": -910, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", + "width": 70, + "x": -910, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", + "width": 70, + "x": -910, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", + "width": 70, + "x": -910, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", + "width": 70, + "x": -910, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", + "width": 70, + "x": -910, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", + "width": 70, + "x": -910, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", + "width": 70, + "x": 630, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", + "width": 70, + "x": 490, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", + "width": 70, + "x": 560, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", + "width": 70, + "x": 350, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", + "width": 70, + "x": 420, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", + "width": 70, + "x": 210, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", + "width": 70, + "x": 280, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", + "width": 70, + "x": 140, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", + "width": 70, + "x": 700, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", + "width": 70, + "x": -350, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", + "width": 70, + "x": -490, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", + "width": 70, + "x": -420, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", + "width": 70, + "x": -630, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", + "width": 70, + "x": -560, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", + "width": 70, + "x": -770, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", + "width": 70, + "x": -700, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", + "width": 70, + "x": -840, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", + "width": 70, + "x": 0, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", + "width": 70, + "x": -140, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", + "width": 70, + "x": -70, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", + "width": 70, + "x": -280, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", + "width": 70, + "x": -210, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", + "width": 70, + "x": 70, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", + "width": 70, + "x": 700, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", + "width": 70, + "x": 700, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", + "width": 70, + "x": 700, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", + "width": 70, + "x": 630, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", + "width": 70, + "x": 490, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", + "width": 70, + "x": 560, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", + "width": 70, + "x": 350, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", + "width": 70, + "x": 420, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", + "width": 70, + "x": 210, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", + "width": 70, + "x": 280, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", + "width": 70, + "x": 140, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", + "width": 70, + "x": 0, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", + "width": 70, + "x": 70, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", + "width": 70, + "x": -140, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", + "width": 70, + "x": -70, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", + "width": 70, + "x": -280, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", + "width": 70, + "x": -210, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", + "width": 70, + "x": -420, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", + "width": 70, + "x": -350, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", + "width": 70, + "x": -490, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", + "width": 70, + "x": -630, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", + "width": 70, + "x": -560, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", + "width": 70, + "x": -770, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", + "width": 70, + "x": -700, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", + "width": 70, + "x": -840, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", + "width": 70, + "x": -910, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", + "width": 70, + "x": -2030, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", + "width": 70, + "x": -1960, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", + "width": 70, + "x": -1960, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", + "width": 70, + "x": -1960, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", + "width": 70, + "x": -1960, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", + "width": 70, + "x": -1960, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", + "width": 70, + "x": -1960, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", + "width": 70, + "x": -1960, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", + "width": 70, + "x": -1960, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", + "width": 70, + "x": -1960, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", + "width": 70, + "x": -1960, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", + "width": 70, + "x": -1960, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", + "width": 70, + "x": -1960, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", + "width": 70, + "x": -1960, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", + "width": 70, + "x": -1960, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", + "width": 70, + "x": -1960, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", + "width": 70, + "x": -1960, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", + "width": 70, + "x": -1960, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", + "width": 70, + "x": -1960, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", + "width": 70, + "x": 560, + "y": 35, + "zOrder": 118, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 2, + "height": 105, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "87df3078-0b84-4b8b-877a-f5d1693b797c", + "width": 105, + "x": 455, + "y": 17, + "zOrder": 119, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 30, + "layer": "", + "name": "sports_equipments_movable", + "persistentUuid": "6948a31e-81b4-4f3a-9a1c-8440d0a084dd", + "width": 30, + "x": -140, + "y": 70, + "zOrder": 100, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "a99a4ec2-138d-4e94-9c27-c4e417bb0bd9", + "width": 0, + "x": 280, + "y": 560, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", + "width": 0, + "x": -1470, + "y": 1190, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", + "width": 0, + "x": -1470, + "y": 1820, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", + "width": 0, + "x": -490, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", + "width": 0, + "x": -2520, + "y": 1540, + "zOrder": 12, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "4393ace7-fdcd-4410-9789-21f0bd2e30f4", + "width": 140, + "x": -2380, + "y": 1890, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "5c6123ae-d57b-4022-a5c7-db0ee6e014b9", + "width": 140, + "x": -2380, + "y": 1893, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", + "width": 0, + "x": -2520, + "y": 910, + "zOrder": 12, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", + "width": 70, + "x": -2030, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", + "width": 70, + "x": -2030, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fa51ad7d-bd0d-4b5c-91aa-f33f5566aced", + "width": 70, + "x": -1960, + "y": 350, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun3", + "persistentUuid": "649553fa-c15a-47bc-82bc-2b7b8687672b", + "width": 0, + "x": 70, + "y": 1540, + "zOrder": 121, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "flame_thrower_fire_collision", + "persistentUuid": "ded64a81-59c3-4fd0-8f25-30f0b69e5472", + "width": 0, + "x": -247, + "y": 1324, + "zOrder": 122, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", + "width": 70, + "x": -2380, + "y": 2030, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", + "width": 70, + "x": -2380, + "y": 2100, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", + "width": 70, + "x": -2310, + "y": 2030, + "zOrder": 11, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", + "width": 70, + "x": -2380, + "y": 2240, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", + "width": 70, + "x": -2310, + "y": 2240, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", + "width": 70, + "x": -2310, + "y": 2100, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", + "width": 70, + "x": -2310, + "y": 2170, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", + "width": 70, + "x": -2380, + "y": 2170, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", + "width": 70, + "x": -2380, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", + "width": 70, + "x": -2030, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", + "width": 70, + "x": -2100, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", + "width": 70, + "x": -2310, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", + "width": 70, + "x": -2240, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", + "width": 70, + "x": -2170, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", + "width": 70, + "x": -1960, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", + "width": 70, + "x": -2660, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", + "width": 70, + "x": -2660, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", + "width": 70, + "x": -2660, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", + "width": 70, + "x": -2660, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", + "width": 70, + "x": -2660, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", + "width": 70, + "x": -2660, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", + "width": 70, + "x": -2660, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", + "width": 70, + "x": -2660, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", + "width": 70, + "x": -2660, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", + "width": 70, + "x": -2660, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", + "width": 70, + "x": -2660, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", + "width": 70, + "x": -2660, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", + "width": 70, + "x": -2660, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", + "width": 70, + "x": -2660, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", + "width": 70, + "x": -2450, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", + "width": 70, + "x": -2520, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", + "width": 70, + "x": -2590, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", + "width": 70, + "x": -2660, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", + "width": 70, + "x": -2660, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", + "width": 70, + "x": -2660, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", + "width": 70, + "x": -2660, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", + "width": 70, + "x": -2660, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", + "width": 70, + "x": -2660, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", + "width": 70, + "x": -2660, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", + "width": 70, + "x": -2660, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", + "width": 70, + "x": -2660, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", + "width": 70, + "x": -2660, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", + "width": 70, + "x": -2660, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", + "width": 70, + "x": -2660, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", + "width": 70, + "x": -2660, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", + "width": 70, + "x": -2660, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", + "width": 70, + "x": -2590, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", + "width": 70, + "x": -2520, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", + "width": 70, + "x": -2450, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", + "width": 70, + "x": -2380, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", + "width": 70, + "x": -2310, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", + "width": 70, + "x": -2240, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", + "width": 70, + "x": -2170, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", + "width": 70, + "x": -2100, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", + "width": 70, + "x": -2030, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", + "width": 70, + "x": -2590, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", + "width": 70, + "x": -2100, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", + "width": 70, + "x": -2520, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", + "width": 70, + "x": -2170, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", + "width": 70, + "x": -2240, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", + "width": 70, + "x": -2450, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", + "width": 70, + "x": -2100, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", + "width": 70, + "x": -2030, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", + "width": 70, + "x": -2100, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2240, + "layer": "", + "name": "road", + "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", + "width": 70, + "x": -2870, + "y": 280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", + "width": 1820, + "x": -2870, + "y": 210, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", + "width": 210, + "x": -1820, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", + "width": 70, + "x": -3010, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", + "width": 70, + "x": -3010, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", + "width": 70, + "x": -3010, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "298aee83-aa29-41c1-b284-36dd965c4c5a", + "width": 70, + "x": -3010, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc90e793-2e56-4022-969b-7465ce8c17b3", + "width": 70, + "x": -3010, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", + "width": 70, + "x": -3010, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", + "width": 70, + "x": -3010, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", + "width": 70, + "x": -3010, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", + "width": 70, + "x": -3010, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", + "width": 70, + "x": -3010, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3880452-b974-4033-9d23-48e5b46c5439", + "width": 70, + "x": -3010, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", + "width": 70, + "x": -3010, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3efc7c00-3405-4012-afaa-121ad6c60f20", + "width": 70, + "x": -3010, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", + "width": 70, + "x": -3010, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", + "width": 70, + "x": -3010, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", + "width": 70, + "x": -3010, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", + "width": 70, + "x": -3010, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ca10a7df-d8f6-4c40-b039-429f191bd075", + "width": 70, + "x": -3010, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", + "width": 70, + "x": -3010, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4d250a55-e245-4459-8107-5d3986e0046d", + "width": 70, + "x": -3010, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", + "width": 70, + "x": -3010, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", + "width": 70, + "x": -2730, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", + "width": 70, + "x": -2730, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", + "width": 70, + "x": -2730, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", + "width": 70, + "x": -2730, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", + "width": 70, + "x": -2730, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", + "width": 70, + "x": -2730, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", + "width": 70, + "x": -2730, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", + "width": 70, + "x": -2730, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", + "width": 70, + "x": -2730, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", + "width": 70, + "x": -2730, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", + "width": 70, + "x": -2730, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", + "width": 70, + "x": -2730, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", + "width": 70, + "x": -2730, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", + "width": 70, + "x": -2730, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", + "width": 70, + "x": -2730, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", + "width": 70, + "x": -2730, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", + "width": 70, + "x": -2730, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", + "width": 70, + "x": -2730, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", + "width": 70, + "x": -2730, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", + "width": 70, + "x": -2730, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", + "width": 70, + "x": -2730, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", + "width": 70, + "x": -3010, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", + "width": 70, + "x": -3010, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", + "width": 70, + "x": -3010, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", + "width": 70, + "x": -3010, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", + "width": 70, + "x": -3010, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", + "width": 70, + "x": -3010, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", + "width": 70, + "x": -3010, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", + "width": 70, + "x": -3010, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", + "width": 70, + "x": -3010, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", + "width": 70, + "x": -3010, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", + "width": 70, + "x": -3010, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", + "width": 70, + "x": -2730, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", + "width": 70, + "x": -2730, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", + "width": 70, + "x": -2730, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", + "width": 70, + "x": -2730, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", + "width": 70, + "x": -2730, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", + "width": 70, + "x": -2730, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", + "width": 70, + "x": -2730, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", + "width": 70, + "x": -2170, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", + "width": 70, + "x": -2100, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", + "width": 70, + "x": -2030, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", + "width": 70, + "x": -2520, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", + "width": 70, + "x": -2450, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", + "width": 70, + "x": -2380, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", + "width": 70, + "x": -2310, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", + "width": 70, + "x": -2240, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", + "width": 70, + "x": -2590, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb97c581-bfe6-4c6c-9c41-b5bd93717ce4", + "width": 70, + "x": -2660, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", + "width": 70, + "x": -2450, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", + "width": 70, + "x": -2380, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", + "width": 70, + "x": -2310, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", + "width": 70, + "x": -2800, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", + "width": 70, + "x": -2730, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", + "width": 70, + "x": -2660, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", + "width": 70, + "x": -2590, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", + "width": 70, + "x": -2520, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", + "width": 70, + "x": -2870, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", + "width": 70, + "x": -2940, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", + "width": 70, + "x": -1750, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", + "width": 70, + "x": -1680, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", + "width": 70, + "x": -1610, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", + "width": 70, + "x": -2100, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", + "width": 70, + "x": -2030, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", + "width": 70, + "x": -1960, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", + "width": 70, + "x": -1890, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", + "width": 70, + "x": -1820, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", + "width": 70, + "x": -2170, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", + "width": 70, + "x": -2240, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", + "width": 70, + "x": -1050, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", + "width": 70, + "x": -980, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", + "width": 70, + "x": -1400, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", + "width": 70, + "x": -1330, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", + "width": 70, + "x": -1260, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", + "width": 70, + "x": -1190, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", + "width": 70, + "x": -1120, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", + "width": 70, + "x": -1470, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", + "width": 70, + "x": -1540, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", + "width": 70, + "x": -1960, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", + "width": 70, + "x": -980, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", + "width": 70, + "x": -980, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", + "width": 70, + "x": -980, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", + "width": 70, + "x": -980, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", + "width": 70, + "x": -980, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", + "width": 70, + "x": -980, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", + "width": 70, + "x": -980, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", + "width": 70, + "x": -980, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", + "width": 70, + "x": -980, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", + "width": 70, + "x": -980, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", + "width": 70, + "x": -980, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", + "width": 70, + "x": -1190, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", + "width": 70, + "x": -1120, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", + "width": 70, + "x": -1050, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", + "width": 70, + "x": -1400, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", + "width": 70, + "x": -1330, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", + "width": 70, + "x": -1260, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", + "width": 70, + "x": -1680, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", + "width": 70, + "x": -1610, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", + "width": 70, + "x": -1540, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", + "width": 70, + "x": -1470, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 564, + "layer": "", + "name": "ground_1", + "persistentUuid": "fa1a4a5e-9b00-407e-b0dd-21ab489e513b", + "width": 1680, + "x": -910, + "y": -179, + "zOrder": 4, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", + "width": 0, + "x": -840, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "389124ee-f8c8-46ed-b50a-59a370e84049", + "width": 0, + "x": 490, + "y": -70, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "3b064f58-b1f8-4106-80d3-f6a9f9e2311e", + "width": 0, + "x": -280, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "53e4866c-5c86-4519-b8f1-8ce042a92e84", + "width": 0, + "x": -140, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", + "width": 70, + "x": -840, + "y": 35, + "zOrder": 118, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 0, + "height": 105, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "aacbefe4-00b0-4e91-a270-f33a3ce872b0", + "width": 105, + "x": -770, + "y": 18, + "zOrder": 119, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", + "width": 70, + "x": -2100, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", + "width": 70, + "x": -2100, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", + "width": 70, + "x": -2380, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", + "width": 70, + "x": -2450, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", + "width": 70, + "x": -2170, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", + "width": 70, + "x": -2170, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", + "width": 70, + "x": -2240, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", + "width": 70, + "x": -2310, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", + "width": 70, + "x": -2380, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", + "width": 70, + "x": -2450, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", + "width": 70, + "x": -2100, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", + "width": 70, + "x": -2240, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", + "width": 70, + "x": -2310, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", + "width": 70, + "x": -2170, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", + "width": 70, + "x": -2240, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", + "width": 70, + "x": -2310, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", + "width": 70, + "x": -2380, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", + "width": 70, + "x": -2450, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", + "width": 70, + "x": -2450, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", + "width": 70, + "x": -2380, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", + "width": 70, + "x": -2310, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", + "width": 70, + "x": -2380, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", + "width": 70, + "x": -2450, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", + "width": 70, + "x": -2310, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", + "width": 70, + "x": -1610, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", + "width": 210, + "x": -1540, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", + "width": 210, + "x": -1260, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", + "width": 70, + "x": -1610, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", + "width": 70, + "x": -1610, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", + "width": 70, + "x": -1610, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", + "width": 70, + "x": -1610, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", + "width": 70, + "x": -1330, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", + "width": 70, + "x": -1330, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", + "width": 70, + "x": -1330, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", + "width": 70, + "x": -1330, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", + "width": 70, + "x": -1330, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", + "width": 70, + "x": -1330, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", + "width": 70, + "x": -1610, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", + "width": 70, + "x": -1050, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", + "width": 70, + "x": -1050, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", + "width": 70, + "x": -1050, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", + "width": 70, + "x": -1050, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", + "width": 70, + "x": -1050, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", + "width": 70, + "x": -1050, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", + "width": 70, + "x": -1050, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", + "width": 70, + "x": -1050, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", + "width": 70, + "x": -1050, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", + "width": 70, + "x": -1050, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", + "width": 70, + "x": -2870, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", + "width": 70, + "x": -2800, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", + "width": 70, + "x": -2730, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", + "width": 70, + "x": -2660, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", + "width": 70, + "x": -2590, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", + "width": 70, + "x": -2520, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", + "width": 70, + "x": -2450, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", + "width": 70, + "x": -2380, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", + "width": 70, + "x": -2310, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", + "width": 70, + "x": -2240, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", + "width": 70, + "x": -2170, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", + "width": 70, + "x": -2100, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", + "width": 70, + "x": -2030, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", + "width": 70, + "x": -1960, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", + "width": 70, + "x": -1890, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", + "width": 70, + "x": -1820, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", + "width": 70, + "x": -1750, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", + "width": 70, + "x": -1680, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", + "width": 70, + "x": -1610, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", + "width": 70, + "x": -1540, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", + "width": 70, + "x": -1470, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", + "width": 70, + "x": -1400, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", + "width": 70, + "x": -1330, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", + "width": 70, + "x": -1260, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", + "width": 70, + "x": -1190, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", + "width": 70, + "x": -1120, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51e87c25-6920-44c1-8f85-9a56863bf4d9", + "width": 70, + "x": -1050, + "y": 140, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", + "width": 70, + "x": -2940, + "y": 140, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", + "width": 70, + "x": -2940, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", + "width": 70, + "x": -2940, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", + "width": 70, + "x": -2940, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", + "width": 70, + "x": -2940, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", + "width": 70, + "x": -2940, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", + "width": 70, + "x": -2940, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", + "width": 70, + "x": -2940, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", + "width": 70, + "x": -2940, + "y": 700, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", + "width": 70, + "x": -2940, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", + "width": 70, + "x": -2940, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", + "width": 70, + "x": -2940, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", + "width": 70, + "x": -2940, + "y": 980, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", + "width": 70, + "x": -2940, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", + "width": 70, + "x": -2940, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", + "width": 70, + "x": -2940, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", + "width": 70, + "x": -2940, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", + "width": 70, + "x": -2940, + "y": 1330, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", + "width": 70, + "x": -2940, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", + "width": 70, + "x": -2940, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", + "width": 70, + "x": -2940, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", + "width": 70, + "x": -2940, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", + "width": 70, + "x": -2940, + "y": 1610, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", + "width": 70, + "x": -2940, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", + "width": 70, + "x": -2940, + "y": 1820, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", + "width": 70, + "x": -2800, + "y": 1610, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", + "width": 70, + "x": -2800, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", + "width": 70, + "x": -2800, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", + "width": 70, + "x": -2800, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", + "width": 70, + "x": -2800, + "y": 1890, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", + "width": 70, + "x": -2800, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", + "width": 70, + "x": -2800, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", + "width": 70, + "x": -2800, + "y": 2100, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", + "width": 70, + "x": -2800, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", + "width": 70, + "x": -2800, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", + "width": 70, + "x": -2800, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", + "width": 70, + "x": -2800, + "y": 2380, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", + "width": 70, + "x": -2800, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", + "width": 70, + "x": -2800, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", + "width": 70, + "x": -2800, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", + "width": 70, + "x": -2800, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", + "width": 70, + "x": -2800, + "y": 1050, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", + "width": 70, + "x": -2800, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", + "width": 70, + "x": -2800, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", + "width": 70, + "x": -2800, + "y": 1260, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", + "width": 70, + "x": -2800, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", + "width": 70, + "x": -2800, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", + "width": 70, + "x": -2800, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", + "width": 70, + "x": -2800, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", + "width": 70, + "x": -2800, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", + "width": 70, + "x": -2800, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", + "width": 70, + "x": -2800, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", + "width": 70, + "x": -2800, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", + "width": 70, + "x": -2940, + "y": 1890, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", + "width": 70, + "x": -2940, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", + "width": 70, + "x": -2940, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", + "width": 70, + "x": -2940, + "y": 2100, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", + "width": 70, + "x": -2940, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", + "width": 70, + "x": -2940, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", + "width": 70, + "x": -2940, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", + "width": 70, + "x": -2940, + "y": 2380, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", + "width": 70, + "x": -2730, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", + "width": 70, + "x": -2100, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", + "width": 70, + "x": -2170, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", + "width": 70, + "x": -2240, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", + "width": 70, + "x": -2310, + "y": 280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", + "width": 70, + "x": -2380, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", + "width": 70, + "x": -2450, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", + "width": 70, + "x": -2520, + "y": 280, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", + "width": 70, + "x": -2660, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "846df340-365f-4859-8137-4845c9256455", + "width": 70, + "x": -2590, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", + "width": 70, + "x": -2800, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", + "width": 70, + "x": -2800, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", + "width": 70, + "x": -2800, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", + "width": 70, + "x": -2030, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", + "width": 70, + "x": -1960, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", + "width": 70, + "x": -1890, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", + "width": 70, + "x": -1890, + "y": 350, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", + "width": 70, + "x": -1890, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", + "width": 70, + "x": -1890, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", + "width": 70, + "x": -1890, + "y": 630, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", + "width": 70, + "x": -1890, + "y": 560, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", + "width": 70, + "x": -1890, + "y": 770, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", + "width": 70, + "x": -1890, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", + "width": 70, + "x": -1890, + "y": 840, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", + "width": 70, + "x": -1680, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", + "width": 70, + "x": -1820, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", + "width": 70, + "x": -1610, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", + "width": 70, + "x": -1750, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", + "width": 770, + "x": -1820, + "y": 280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", + "width": 70, + "x": -1470, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", + "width": 70, + "x": -1540, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", + "width": 70, + "x": -1400, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", + "width": 70, + "x": -1260, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", + "width": 70, + "x": -1330, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", + "width": 70, + "x": -1120, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", + "width": 70, + "x": -1190, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", + "width": 70, + "x": -1960, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", + "width": 70, + "x": -1960, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", + "width": 70, + "x": -1960, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", + "width": 70, + "x": -1960, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", + "width": 70, + "x": -1960, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", + "width": 70, + "x": -2030, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", + "width": 70, + "x": -1960, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", + "width": 70, + "x": -1960, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", + "width": 70, + "x": -1960, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", + "width": 70, + "x": -1960, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", + "width": 70, + "x": -1890, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", + "width": 70, + "x": -1820, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", + "width": 70, + "x": -1750, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", + "width": 70, + "x": -980, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", + "width": 70, + "x": -2100, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", + "width": 70, + "x": -2030, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", + "width": 70, + "x": -2030, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", + "width": 70, + "x": -2030, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", + "width": 70, + "x": -2940, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", + "width": 70, + "x": -2800, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", + "width": 70, + "x": -1120, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", + "width": 70, + "x": -560, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", + "width": 70, + "x": -490, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", + "width": 70, + "x": -420, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", + "width": 70, + "x": -910, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", + "width": 70, + "x": -840, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", + "width": 70, + "x": -770, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", + "width": 70, + "x": -700, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", + "width": 70, + "x": -630, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", + "width": 70, + "x": -980, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", + "width": 70, + "x": -1050, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", + "width": 70, + "x": 140, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", + "width": 70, + "x": 210, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", + "width": 70, + "x": 280, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", + "width": 70, + "x": -210, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", + "width": 70, + "x": -140, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", + "width": 70, + "x": -70, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", + "width": 70, + "x": 0, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", + "width": 70, + "x": 70, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", + "width": 70, + "x": -280, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", + "width": 70, + "x": -350, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", + "width": 70, + "x": 840, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", + "width": 70, + "x": 490, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", + "width": 70, + "x": 560, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", + "width": 70, + "x": 630, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", + "width": 70, + "x": 700, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", + "width": 70, + "x": 770, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", + "width": 70, + "x": 420, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", + "width": 70, + "x": 350, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", + "width": 70, + "x": -1120, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", + "width": 70, + "x": -560, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", + "width": 70, + "x": -490, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", + "width": 70, + "x": -420, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", + "width": 70, + "x": -910, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", + "width": 70, + "x": -840, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", + "width": 70, + "x": -770, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", + "width": 70, + "x": -700, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", + "width": 70, + "x": -630, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", + "width": 70, + "x": -980, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", + "width": 70, + "x": -1050, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", + "width": 70, + "x": 140, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", + "width": 70, + "x": 210, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", + "width": 70, + "x": 280, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", + "width": 70, + "x": -210, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", + "width": 70, + "x": -140, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", + "width": 70, + "x": -70, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", + "width": 70, + "x": 0, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", + "width": 70, + "x": 70, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", + "width": 70, + "x": -280, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", + "width": 70, + "x": -350, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", + "width": 70, + "x": 840, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", + "width": 70, + "x": 490, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", + "width": 70, + "x": 560, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", + "width": 70, + "x": 630, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", + "width": 70, + "x": 700, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", + "width": 70, + "x": 770, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", + "width": 70, + "x": 420, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", + "width": 70, + "x": 350, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", + "width": 70, + "x": -1120, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", + "width": 70, + "x": -1050, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", + "width": 70, + "x": -1050, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", + "width": 70, + "x": -1050, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", + "width": 70, + "x": -1050, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", + "width": 70, + "x": -980, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", + "width": 70, + "x": -980, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", + "width": 70, + "x": -980, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", + "width": 70, + "x": -980, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", + "width": 70, + "x": -1120, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", + "width": 70, + "x": -1120, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", + "width": 70, + "x": -1120, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", + "width": 70, + "x": -2590, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", + "width": 70, + "x": -2520, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", + "width": 70, + "x": -2450, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", + "width": 70, + "x": -2940, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", + "width": 70, + "x": -2870, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", + "width": 70, + "x": -2800, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", + "width": 70, + "x": -2730, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", + "width": 70, + "x": -2660, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", + "width": 70, + "x": -3010, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", + "width": 70, + "x": -3080, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b1ba355-0033-479e-8410-4423a7ecd076", + "width": 70, + "x": -1890, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", + "width": 70, + "x": -1820, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", + "width": 70, + "x": -1750, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", + "width": 70, + "x": -2240, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", + "width": 70, + "x": -2170, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", + "width": 70, + "x": -2100, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", + "width": 70, + "x": -2030, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", + "width": 70, + "x": -1960, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", + "width": 70, + "x": -2310, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", + "width": 70, + "x": -2380, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", + "width": 70, + "x": -1190, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", + "width": 70, + "x": -1540, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", + "width": 70, + "x": -1470, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", + "width": 70, + "x": -1400, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", + "width": 70, + "x": -1330, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", + "width": 70, + "x": -1260, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", + "width": 70, + "x": -1610, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", + "width": 70, + "x": -1680, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", + "width": 70, + "x": -2590, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", + "width": 70, + "x": -2520, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", + "width": 70, + "x": -2450, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", + "width": 70, + "x": -2940, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", + "width": 70, + "x": -2870, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", + "width": 70, + "x": -2800, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", + "width": 70, + "x": -2730, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", + "width": 70, + "x": -2660, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", + "width": 70, + "x": -3010, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", + "width": 70, + "x": -3080, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45636fe2-fce7-4718-b188-2f8eff773926", + "width": 70, + "x": -1890, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", + "width": 70, + "x": -1820, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", + "width": 70, + "x": -1750, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", + "width": 70, + "x": -2240, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", + "width": 70, + "x": -2170, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", + "width": 70, + "x": -2100, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", + "width": 70, + "x": -2030, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", + "width": 70, + "x": -1960, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", + "width": 70, + "x": -2310, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", + "width": 70, + "x": -2380, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", + "width": 70, + "x": -1190, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", + "width": 70, + "x": -1540, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", + "width": 70, + "x": -1470, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", + "width": 70, + "x": -1400, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", + "width": 70, + "x": -1330, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", + "width": 70, + "x": -1260, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", + "width": 70, + "x": -1610, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", + "width": 70, + "x": -1680, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", + "width": 70, + "x": -3080, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", + "width": 70, + "x": -3080, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", + "width": 70, + "x": -3080, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", + "width": 70, + "x": -3080, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", + "width": 70, + "x": -3080, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", + "width": 70, + "x": -3080, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", + "width": 70, + "x": -3080, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", + "width": 70, + "x": -3080, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", + "width": 70, + "x": -3080, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", + "width": 70, + "x": -3080, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", + "width": 70, + "x": -3080, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", + "width": 70, + "x": -3080, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", + "width": 70, + "x": -3080, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", + "width": 70, + "x": -3080, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", + "width": 70, + "x": -3080, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", + "width": 70, + "x": -3080, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", + "width": 70, + "x": -3080, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", + "width": 70, + "x": -3080, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", + "width": 70, + "x": -3080, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", + "width": 70, + "x": -3080, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", + "width": 70, + "x": -3080, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", + "width": 70, + "x": -3080, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", + "width": 70, + "x": -3080, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", + "width": 70, + "x": -3080, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", + "width": 70, + "x": -3080, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cb0e950-9a8c-496d-bd67-774e75c04418", + "width": 70, + "x": -3080, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d9dab9c-63ce-4922-9e02-ff6c19188008", + "width": 70, + "x": -3080, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", + "width": 70, + "x": -3080, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", + "width": 70, + "x": -3080, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62a4a047-24c1-487f-87bd-df3881885551", + "width": 70, + "x": -3080, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", + "width": 70, + "x": -3080, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd831170-7ea4-422e-b57f-c6feaa014ba7", + "width": 70, + "x": -3080, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", + "width": 70, + "x": 1470, + "y": -210, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", + "width": 70, + "x": 1470, + "y": -140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", + "width": 70, + "x": 910, + "y": -210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", + "width": 70, + "x": 910, + "y": -140, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", + "width": 70, + "x": 1190, + "y": -210, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", + "width": 70, + "x": 1190, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "flame_thrower_fire", + "persistentUuid": "28a74c98-359a-4215-ab03-e9e261d13ee6", + "width": 0, + "x": 350, + "y": 1400, + "zOrder": 1239, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "3b6c9f7b-aa77-4828-991d-b56ea26f63ee", + "width": 0, + "x": 1444, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "6d1aea08-0699-42eb-a952-082f07447057", + "width": 0, + "x": 910, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "f213373c-ee27-4b40-9713-d6ee5e0af152", + "width": 0, + "x": 1050, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9a3ce28b-b461-4cac-b2d8-ab32cc3cc65a", + "width": 0, + "x": 1178, + "y": -280, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "1df224b2-7836-4b29-a7e3-09d13e4635d5", + "width": 0, + "x": 1304, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50d7b1de-96a1-4f71-b957-e20768dc708d", + "width": 70, + "x": 1540, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", + "width": 70, + "x": 1610, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", + "width": 70, + "x": 1540, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", + "width": 70, + "x": 1610, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "950c62c8-220a-4a5c-a0cb-027e19a80ebd", + "width": 630, + "x": 910, + "y": -420, + "zOrder": 123, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun4", + "persistentUuid": "e3d8ea57-8d05-4c0e-9db6-8b316d24b503", + "width": 0, + "x": 154, + "y": 1289, + "zOrder": 1240, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "0ac23ea7-fd4d-4558-8625-f1846c824a5b", + "width": 0, + "x": -140, + "y": 1330, + "zOrder": 1241, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "crossair", + "persistentUuid": "3ef2ea28-0138-453d-99de-f457f24e58f5", + "width": 0, + "x": 0, + "y": 1190, + "zOrder": 1242, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "d996ba71-5299-4c8c-a851-c15165c7fb18", + "width": 420, + "x": -3640, + "y": 2170, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "ea61dde3-6225-4bfc-b020-af6f481c1676", + "width": 140, + "x": -3780, + "y": 2170, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "reloading", + "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", + "width": 0, + "x": 0, + "y": 0, + "zOrder": 1243, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "379055e1-4277-4112-a273-ca7a8e7b1b58", + "width": 70, + "x": -1820, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", + "width": 70, + "x": -1820, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", + "width": 70, + "x": -1820, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", + "width": 70, + "x": -1820, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", + "width": 70, + "x": -1820, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", + "width": 70, + "x": -1820, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", + "width": 70, + "x": -1820, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", + "width": 70, + "x": -1820, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", + "width": 70, + "x": -1820, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", + "width": 70, + "x": -1820, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", + "width": 70, + "x": -1820, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", + "width": 70, + "x": -1820, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", + "width": 70, + "x": -1820, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", + "width": 70, + "x": -1820, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", + "width": 70, + "x": -1820, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", + "width": 70, + "x": -1820, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", + "width": 70, + "x": -1820, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", + "width": 70, + "x": -1890, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", + "width": 70, + "x": -1890, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14a6d93c-17cc-4c5f-8681-b463151e8b89", + "width": 70, + "x": -1890, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "32892402-1801-48b8-aeb9-8712ed98ce38", + "width": 70, + "x": -1890, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31150f68-fa1a-4aad-b3bd-63963073e0b8", + "width": 70, + "x": -1890, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", + "width": 70, + "x": -1890, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", + "width": 70, + "x": -1890, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", + "width": 70, + "x": -1890, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", + "width": 70, + "x": -1890, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", + "width": 70, + "x": -1890, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", + "width": 70, + "x": -1890, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", + "width": 70, + "x": -1890, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", + "width": 70, + "x": -1890, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", + "width": 70, + "x": -1890, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", + "width": 70, + "x": -1890, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", + "width": 70, + "x": -1890, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", + "width": 70, + "x": -1890, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", + "width": 70, + "x": -1750, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a248f1d0-1ff3-4bef-acba-dec57fc60107", + "width": 70, + "x": -1750, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0452f3da-94cc-46a1-aa88-a54962bec1c3", + "width": 70, + "x": -1750, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1c0d321-6422-45bf-a32c-37156a882fe9", + "width": 70, + "x": -1750, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", + "width": 70, + "x": -1750, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", + "width": 70, + "x": -1750, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", + "width": 70, + "x": -1750, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", + "width": 70, + "x": -1750, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", + "width": 70, + "x": -1750, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", + "width": 70, + "x": -1750, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", + "width": 70, + "x": -1750, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", + "width": 70, + "x": -1750, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", + "width": 70, + "x": -1750, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", + "width": 70, + "x": -1750, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", + "width": 70, + "x": -1750, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", + "width": 70, + "x": -1750, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", + "width": 70, + "x": -1750, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", + "width": 70, + "x": -1890, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", + "width": 70, + "x": -1750, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", + "width": 70, + "x": -1820, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", + "width": 70, + "x": -1750, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", + "width": 70, + "x": -1820, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", + "width": 70, + "x": -1890, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", + "width": 70, + "x": -770, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", + "width": 70, + "x": -840, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", + "width": 70, + "x": -910, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", + "width": 70, + "x": -560, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", + "width": 70, + "x": -630, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", + "width": 70, + "x": -700, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", + "width": 70, + "x": 140, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", + "width": 70, + "x": -420, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", + "width": 70, + "x": -490, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", + "width": 70, + "x": 630, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", + "width": 70, + "x": -280, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", + "width": 70, + "x": -350, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", + "width": 70, + "x": 490, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", + "width": 70, + "x": 560, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", + "width": 70, + "x": 700, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", + "width": 70, + "x": 210, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", + "width": 70, + "x": 350, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", + "width": 70, + "x": 420, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", + "width": 70, + "x": -70, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", + "width": 70, + "x": -140, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", + "width": 70, + "x": -210, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", + "width": 70, + "x": 0, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", + "width": 70, + "x": 280, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", + "width": 70, + "x": 70, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun5", + "persistentUuid": "20766923-9466-4ff2-a793-d64a75da31f7", + "width": 0, + "x": 70, + "y": 1610, + "zOrder": 1246, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "4ef41487-1e41-403b-a2f4-f786280a493f", + "width": 0, + "x": -140, + "y": 1470, + "zOrder": 1247, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "mele1", + "persistentUuid": "457e4317-ece4-45d3-bf96-708ab93d5b4d", + "width": 0, + "x": 210, + "y": 1610, + "zOrder": 1248, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "energy", + "persistentUuid": "34696f8a-c031-467a-bffd-889118b6d90f", + "width": 0, + "x": -70, + "y": 1470, + "zOrder": 1249, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "Wheel_info", + "persistentUuid": "539a6f1b-b450-4262-8663-6b83b88a20f9", + "width": 0, + "x": 0, + "y": 560, + "zOrder": 1250, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 630, + "layer": "", + "name": "roof_tops", + "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", + "width": 700, + "x": 2030, + "y": 70, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 490, + "layer": "", + "name": "roof_tops", + "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", + "width": 630, + "x": 1960, + "y": 1050, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", + "width": 210, + "x": 1750, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "288f8d6b-d873-441f-96ad-59d5c5716e5f", + "width": 210, + "x": 2100, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", + "width": 70, + "x": 2030, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", + "width": 70, + "x": 2100, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", + "width": 70, + "x": 2170, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", + "width": 70, + "x": 1680, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", + "width": 70, + "x": 1750, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", + "width": 70, + "x": 1820, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", + "width": 70, + "x": 1890, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", + "width": 70, + "x": 1960, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", + "width": 70, + "x": 2730, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", + "width": 70, + "x": 2800, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", + "width": 70, + "x": 2870, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", + "width": 70, + "x": 2380, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", + "width": 70, + "x": 2450, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", + "width": 70, + "x": 2520, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", + "width": 70, + "x": 2590, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", + "width": 70, + "x": 2660, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", + "width": 70, + "x": 2310, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", + "width": 70, + "x": 2240, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", + "width": 70, + "x": 3010, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", + "width": 70, + "x": 2940, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", + "width": 70, + "x": 2030, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", + "width": 70, + "x": 2100, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", + "width": 70, + "x": 2170, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", + "width": 70, + "x": 1680, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", + "width": 70, + "x": 1750, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", + "width": 70, + "x": 1820, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", + "width": 70, + "x": 1890, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", + "width": 70, + "x": 1960, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", + "width": 70, + "x": 2730, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", + "width": 70, + "x": 2800, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", + "width": 70, + "x": 2870, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", + "width": 70, + "x": 2380, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", + "width": 70, + "x": 2450, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", + "width": 70, + "x": 2520, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", + "width": 70, + "x": 2590, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", + "width": 70, + "x": 2660, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", + "width": 70, + "x": 2310, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", + "width": 70, + "x": 2240, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", + "width": 70, + "x": 3010, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", + "width": 70, + "x": 2940, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", + "width": 0, + "x": 3010, + "y": -294, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", + "width": 70, + "x": 2100, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", + "width": 70, + "x": 2030, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", + "width": 70, + "x": 1960, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", + "width": 70, + "x": 1890, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", + "width": 70, + "x": 1820, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", + "width": 70, + "x": 1750, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", + "width": 70, + "x": 3010, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", + "width": 70, + "x": 3010, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", + "width": 70, + "x": 3010, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", + "width": 70, + "x": 2940, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", + "width": 70, + "x": 2870, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", + "width": 70, + "x": 2800, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", + "width": 70, + "x": 2730, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", + "width": 70, + "x": 2660, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", + "width": 70, + "x": 2590, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", + "width": 70, + "x": 2520, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", + "width": 70, + "x": 2450, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", + "width": 70, + "x": 2380, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", + "width": 70, + "x": 2310, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", + "width": 70, + "x": 2240, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", + "width": 70, + "x": 2170, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", + "width": 70, + "x": 3010, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", + "width": 70, + "x": 3010, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", + "width": 70, + "x": 3010, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", + "width": 70, + "x": 3010, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", + "width": 70, + "x": 3010, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", + "width": 70, + "x": 3010, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", + "width": 70, + "x": 3010, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", + "width": 70, + "x": 3010, + "y": 350, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", + "width": 70, + "x": 2940, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", + "width": 70, + "x": 3010, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", + "width": 70, + "x": 3010, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", + "width": 70, + "x": 3010, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", + "width": 70, + "x": 2450, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", + "width": 70, + "x": 2590, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", + "width": 70, + "x": 2520, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", + "width": 70, + "x": 2660, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", + "width": 70, + "x": 2730, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", + "width": 70, + "x": 2800, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", + "width": 70, + "x": 2870, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", + "width": 70, + "x": 2100, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", + "width": 70, + "x": 2170, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", + "width": 70, + "x": 2240, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", + "width": 70, + "x": 2310, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", + "width": 70, + "x": 2380, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", + "width": 70, + "x": 2030, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", + "width": 70, + "x": 1680, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", + "width": 70, + "x": 1890, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", + "width": 70, + "x": 1960, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", + "width": 70, + "x": 1750, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", + "width": 70, + "x": 1820, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", + "width": 70, + "x": 1680, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", + "width": 70, + "x": 1680, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", + "width": 70, + "x": 1680, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", + "width": 70, + "x": 1680, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", + "width": 70, + "x": 1680, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", + "width": 70, + "x": 1680, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", + "width": 70, + "x": 1680, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", + "width": 70, + "x": 1680, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", + "width": 70, + "x": 1680, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", + "width": 70, + "x": 1680, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", + "width": 70, + "x": 2870, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", + "width": 70, + "x": 2450, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", + "width": 70, + "x": 2590, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", + "width": 70, + "x": 2520, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", + "width": 70, + "x": 2660, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", + "width": 70, + "x": 2730, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", + "width": 70, + "x": 2800, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", + "width": 70, + "x": 2100, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", + "width": 70, + "x": 2170, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", + "width": 70, + "x": 2240, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", + "width": 70, + "x": 2310, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", + "width": 70, + "x": 2380, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", + "width": 70, + "x": 2030, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", + "width": 70, + "x": 1890, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", + "width": 70, + "x": 1960, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", + "width": 70, + "x": 1750, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", + "width": 70, + "x": 1820, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", + "width": 70, + "x": 2870, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", + "width": 70, + "x": 2870, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", + "width": 70, + "x": 2870, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", + "width": 70, + "x": 2870, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", + "width": 70, + "x": 2870, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", + "width": 70, + "x": 2870, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", + "width": 70, + "x": 2870, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", + "width": 70, + "x": 2870, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", + "width": 70, + "x": 2870, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", + "width": 70, + "x": 2870, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", + "width": 70, + "x": 2870, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7fa497d3-5121-4e0b-84b6-4e12c1c44d66", + "width": 70, + "x": 2870, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9a771218-d4ea-406d-b2dd-fd7351bc23ea", + "width": 70, + "x": 2870, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2dbca21b-5e6b-4d4d-8976-aaea8703eeb3", + "width": 70, + "x": 1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "703fdde6-2050-4fa4-856e-b85284f6996e", + "width": 70, + "x": 1680, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1478f30b-7503-461e-9ea5-9decf73fcf4c", + "width": 70, + "x": 1680, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da452c08-2e23-44dd-8b98-e5aa754e47c7", + "width": 70, + "x": 1680, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ddd9a7ed-4293-43b7-8543-1de0cbbce567", + "width": 70, + "x": 1680, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cf9eb196-e355-47a8-b46f-746d74a1b86e", + "width": 70, + "x": 1680, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "18c5aa67-40c3-41ab-b783-21df9b0c7050", + "width": 70, + "x": 1680, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "438d72bd-c8a0-46f4-bb07-856674079261", + "width": 70, + "x": 1680, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27ef65da-eded-43f3-94b5-10d769e8a421", + "width": 70, + "x": 1680, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4ec95727-e908-4bd3-b387-7a088f2d76a4", + "width": 70, + "x": 1680, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cbf61d9-aea5-415a-8da6-f92a294e7cfe", + "width": 70, + "x": 2870, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7ee0dec-cf16-46e3-8bb2-5d591daf98ee", + "width": 70, + "x": 2800, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99b61099-fe13-4aad-91e5-2ed17e72d818", + "width": 70, + "x": 2800, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "23216464-7ed5-4691-bd64-270041c71bc6", + "width": 70, + "x": 2870, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d2e2a94-4d96-4dd8-9326-3d19c3b8abf8", + "width": 70, + "x": 2870, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b87579eb-3594-46c9-9041-f57d35f3d467", + "width": 70, + "x": 2800, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1c96981-5b9c-45fd-85ef-d6e6f688fcdd", + "width": 70, + "x": 2870, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f770ae38-6cf1-43c1-9dd3-e05ddbf08b99", + "width": 70, + "x": 2800, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad53adb5-864b-4135-950a-e1d5d9d7cf85", + "width": 70, + "x": 2870, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b82a114-f3c3-4740-a8f7-b48cfa5c5d99", + "width": 70, + "x": 2800, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6da719ce-c1d0-4b01-aa52-e3b5546a4d62", + "width": 70, + "x": 2870, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e2279d2-6918-4ed7-8240-848e3c8c78f7", + "width": 70, + "x": 2800, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f64611c-bcf8-4cfe-b9bc-4e47b67a2488", + "width": 70, + "x": 2800, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e88c98ac-7951-4aa3-9e31-f9b2b05407cf", + "width": 70, + "x": 2870, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "486c386a-059a-4fe7-8314-d619895e9b80", + "width": 70, + "x": 2800, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed4d93ac-142c-4e1d-8ae7-2b5612d8e95f", + "width": 70, + "x": 2870, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3f7a230-60cf-4c83-97b1-79d91c9d485c", + "width": 70, + "x": 2800, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd4e7a23-eb7e-4593-a9c2-b0834d17822f", + "width": 70, + "x": 2870, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e3e0e68-07ed-45a2-97a0-bdd25501621e", + "width": 70, + "x": 2800, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "752f28bb-6b1a-4686-abba-2e883c0bebb0", + "width": 70, + "x": 2870, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "481c8e7f-3737-4447-a44b-0e923d0a4c08", + "width": 70, + "x": 2800, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4f45a42-eea2-4805-b077-1043b118d1f4", + "width": 70, + "x": 2870, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "910e5a86-7a57-46ff-a5ce-bdd42a094b3a", + "width": 70, + "x": 1680, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c898e9b-2202-4950-a5b6-cdb31db630c8", + "width": 70, + "x": 1750, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d88c9e5-94b3-4239-8489-8ef27a11dc50", + "width": 70, + "x": 1750, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "15598824-aa7b-407c-bb2c-cee76aaa7782", + "width": 70, + "x": 1680, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b69922-ed59-4e10-ae2c-10bfceb0eaf1", + "width": 70, + "x": 1890, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0ff9cf6-97fa-41f2-bb18-18861c2b9dfb", + "width": 70, + "x": 1820, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db4bd46e-8dee-461f-bc19-0fa9a03bb795", + "width": 70, + "x": 1890, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daf91861-b6ba-4e1e-a176-748bb2dd6a52", + "width": 70, + "x": 1820, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2fccca62-a84e-472b-b954-9bee063c2a6f", + "width": 70, + "x": 1820, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2d28a9d-d10e-416d-95c6-4163c2b215dc", + "width": 70, + "x": 1890, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e019c3c-e3e2-4c16-b9a3-a702a96d7854", + "width": 70, + "x": 1750, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4350553f-34e9-45b0-8b96-fcf672aa2158", + "width": 70, + "x": 1680, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aac11c90-9d76-4193-9c07-10ab73620297", + "width": 70, + "x": 1680, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6078343a-d421-474a-ba9d-678bfe5a4ffb", + "width": 70, + "x": 1960, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54cde620-fdbf-4813-8cc9-2751218fcd99", + "width": 70, + "x": 1960, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bf0f90f0-dc77-4bcc-8daa-7338d7c64c4c", + "width": 70, + "x": 1960, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "908e2f99-6c21-4866-b8df-9538ea5a54ae", + "width": 70, + "x": 1680, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80c4ec29-d6d0-4444-b171-61da6af6bf57", + "width": 70, + "x": 1750, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0aedcf97-4e4d-468f-aa54-be942a0a50fc", + "width": 70, + "x": 1750, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c01178c1-8011-40f4-be7e-595009c44079", + "width": 70, + "x": 1680, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78e44b3b-923a-4295-903c-8d8be5f0c4fe", + "width": 70, + "x": 1890, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "43f98d3c-40d2-4723-9f4c-12e9c9b80931", + "width": 70, + "x": 1820, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80eec100-7df4-4d9a-9149-313f0085fa22", + "width": 70, + "x": 1890, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17ed8a8c-db68-4a98-84e5-d592fcaa0fae", + "width": 70, + "x": 1820, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d932241a-c80f-4a4c-b6f9-0c7a763853f0", + "width": 70, + "x": 1820, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87ed1e5a-bee9-4fc1-ba2b-3831947cdfed", + "width": 70, + "x": 1890, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccddc433-ad8e-47da-8334-0b9a59548864", + "width": 70, + "x": 1750, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2c37fbe-65f3-471a-951c-065ad365cb43", + "width": 70, + "x": 1680, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a5f9c46-3001-4f1b-8dcd-97221fd0409d", + "width": 70, + "x": 1960, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "537e6e1b-6aed-4759-923e-5b2b9ab669df", + "width": 70, + "x": 1960, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "10766b48-f334-4f00-9633-67a6cd56361b", + "width": 70, + "x": 1960, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "29692a65-4d8c-43cc-b44a-240bcb386887", + "width": 70, + "x": 1680, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc7ed33c-3579-4f06-b47a-b1472d7e6aed", + "width": 70, + "x": 2030, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d7437d18-8a09-4bd7-a9f8-772d863d9809", + "width": 70, + "x": 2030, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef05e03a-c4bc-43bb-b9c4-10756d148a00", + "width": 70, + "x": 2030, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -23, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "35369171-dcf7-4add-919a-c77646405910", + "width": 140, + "x": 2916, + "y": 51, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "08268a92-32f8-43da-a699-95806c75b214", + "width": 140, + "x": 2926, + "y": 295, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "89edcecc-0111-4d07-b7dc-cd4e5c4c1943", + "width": 140, + "x": 2914, + "y": 515, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "3721e960-fc06-4ba7-89ca-d4c77402b696", + "width": 140, + "x": 2929, + "y": 712, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "081fc014-41e5-4cdf-908d-f642704a7c65", + "width": 140, + "x": 2926, + "y": -81, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -27, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "72b4108f-25e7-4de8-bed5-d77c85a9dd58", + "width": 140, + "x": 2774, + "y": -91, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 38, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "80b69df7-87de-4c9e-9378-6705e93a9dd0", + "width": 140, + "x": 2560, + "y": -97, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 350, + "layer": "", + "name": "roof_tops", + "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", + "width": 420, + "x": 1120, + "y": 2240, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 770, + "layer": "", + "name": "roof_tops", + "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", + "width": 770, + "x": 140, + "y": 2240, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 350, + "layer": "", + "name": "roof_tops", + "persistentUuid": "db30fcc8-72c4-416e-a867-1bb4e3623c66", + "width": 420, + "x": 1120, + "y": 2660, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", + "width": 70, + "x": 700, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f03cd06d-d1e8-40a7-be2e-f711eada215b", + "width": 70, + "x": 840, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4c4520ac-dcc7-46fc-9a06-d2f0f53d7b4c", + "width": 70, + "x": 770, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "db19dc14-1100-4578-a295-c698ec22f654", + "width": 70, + "x": 910, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a744f5d3-ad1b-4834-bcf0-a373a2aa47d3", + "width": 70, + "x": 980, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "df28d3f4-1b4a-4456-bdff-106006d1949d", + "width": 70, + "x": 1050, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ffa6d047-cf0c-4235-a922-5e840460bf66", + "width": 70, + "x": 1120, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d7c9abdd-33b9-4c21-9db1-5a241036e7d4", + "width": 70, + "x": 350, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8a3acc38-b2fb-4af6-bcb8-4cff087b89a2", + "width": 70, + "x": 420, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "535b6aea-b142-4dfc-ab34-7b70067f8ebc", + "width": 70, + "x": 490, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b2c87575-c14b-4f69-8043-c74e4988a5d6", + "width": 70, + "x": 560, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "51ce2a94-fccf-434a-a35e-db676fa2cf9b", + "width": 70, + "x": 630, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f6240f8-353e-45a2-b4c1-0327c4a1c0a0", + "width": 70, + "x": 280, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "75e8953f-a21a-4e82-9a7e-3bf0703efbe0", + "width": 70, + "x": 140, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "664c2efb-60b0-4c55-9f50-c2a0aa2e6f06", + "width": 70, + "x": 210, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c7173c46-3789-49f8-8fe8-f66b78aedb3c", + "width": 70, + "x": 70, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "758827aa-6243-4d66-bd23-0f33d8e83444", + "width": 70, + "x": 0, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4ee0c84f-f0c2-4532-a197-808f7e994298", + "width": 70, + "x": 1680, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fee1dd8d-c255-4958-81eb-34ed9cc976d4", + "width": 70, + "x": 1680, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dbcfe7c0-5ba0-4435-9139-df2b5ffeac6b", + "width": 70, + "x": 1680, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea82cddb-ac13-4c1d-8285-58e07a9dd129", + "width": 70, + "x": 1680, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "138a6def-b202-4c3f-8457-26f694ffe0b8", + "width": 70, + "x": 1680, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c9249796-de6c-444c-9633-c0c036e74644", + "width": 70, + "x": 1680, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5689059c-8816-4f90-ad45-e4b87ecae9fe", + "width": 70, + "x": 1680, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ec8edcc8-0b1b-460c-b89e-e05ba1463374", + "width": 70, + "x": 1680, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "26c03c8d-60af-4858-8c38-1cdd099ce62b", + "width": 70, + "x": 1610, + "y": 2940, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a66054ae-0246-4618-ac82-4ee578692086", + "width": 70, + "x": 1610, + "y": 2870, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "074bf4ff-bf6c-429d-9c31-387ee9f83395", + "width": 70, + "x": 1680, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "003cd580-aade-47c1-a2df-db399e302c27", + "width": 70, + "x": 1610, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3bfa7108-442c-41a0-af7e-86dcaf05b69c", + "width": 70, + "x": 1610, + "y": 3080, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "db39049c-ff66-48e2-a98b-e5246c9bab2b", + "width": 70, + "x": 1610, + "y": 3010, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2b457b59-a8c3-462a-9b3d-1ab0acffd720", + "width": 70, + "x": 1190, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "60287c70-e7c0-4b3b-9874-dbe61be12c06", + "width": 70, + "x": 1260, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2e56e3f5-b9e0-4f4e-b179-cb51a85003b6", + "width": 70, + "x": 1330, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a14bbb22-3457-42e4-8151-6d478cfc36ba", + "width": 70, + "x": 1400, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6a28a485-b5d6-419d-81c2-e2ed69cfb0df", + "width": 70, + "x": 1470, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c17a0093-b97c-47aa-a638-9fbb0f4cab15", + "width": 70, + "x": 1540, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "747cb77b-f5c4-4ff8-ad53-c842d40f3abf", + "width": 70, + "x": 0, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e4ccf47e-8584-4ffc-9df3-3b9218f3a566", + "width": 70, + "x": 0, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45bcee2b-7b28-4117-887a-038572e454e9", + "width": 70, + "x": 0, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6dc8fa62-6545-4293-8fb5-5c360836d5b2", + "width": 70, + "x": 0, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd979be9-1dd6-461d-b490-60e608ff3aee", + "width": 70, + "x": 0, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ba972223-5331-48f4-87a7-4076ede13dc9", + "width": 70, + "x": 0, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "35a53d64-17b0-4726-a956-5b565492b321", + "width": 70, + "x": 0, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5ae70e97-c405-46ea-aae5-7f504698f6cc", + "width": 70, + "x": 0, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "98e19e2b-7048-4adc-9633-91e95182b93d", + "width": 70, + "x": 0, + "y": 2940, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "de084cd6-25bc-45f0-9fbc-b4bf80f72dda", + "width": 70, + "x": 0, + "y": 2870, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1bccf72a-3a8a-4f48-b4b8-5415cb79826c", + "width": 70, + "x": 0, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9898dcb0-d207-4f3a-bbbc-c2dd89f66586", + "width": 70, + "x": 0, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "829c963f-15e1-4ac1-add3-da88cc2cad2e", + "width": 70, + "x": 0, + "y": 3080, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3f29cf5d-8a39-4a50-8ff9-3ce5069a0513", + "width": 70, + "x": 0, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "269cb788-212d-4b6d-a564-9c1b13d3e877", + "width": 70, + "x": 1610, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "26d4094a-25a1-4c0d-aa06-dade9878b5a1", + "width": 70, + "x": 630, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a988f5ea-f8e0-45f5-9544-4e14f5ccfd7b", + "width": 70, + "x": 770, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e08c5d0c-1826-488f-9b64-dd31703fdf3d", + "width": 70, + "x": 700, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "88e6dfd1-a4b1-44b5-a0d3-642da1455ec9", + "width": 70, + "x": 840, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2e6f2410-f832-4631-85a0-07d6eeb4e464", + "width": 70, + "x": 910, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "460977dc-3446-44db-ab0f-0d223866b051", + "width": 70, + "x": 980, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7608ee28-9760-490c-8d94-f94fad504325", + "width": 70, + "x": 1050, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da5cdf80-61b2-4ffd-94e3-61c86760f39c", + "width": 70, + "x": 210, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "011b9989-045d-4a30-9cfe-b01abd000d82", + "width": 70, + "x": 280, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "379a55a7-ea5c-4836-a9e9-0874d09f08ff", + "width": 70, + "x": 350, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dbf86dc-38c8-45a7-8330-ace138b4edb8", + "width": 70, + "x": 140, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c714d1a-036c-4606-ae34-b828eb71fd63", + "width": 70, + "x": 70, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56adb359-6c0d-4cac-a58f-e27cd140e27f", + "width": 70, + "x": 1120, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c2206fd-4293-4567-94f7-fe5cd158125e", + "width": 70, + "x": 1680, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "659684c4-2f45-46b0-a21a-a06fc3a9760e", + "width": 70, + "x": 1680, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c363a86-8994-4bd7-9b60-0e0bb1a310d6", + "width": 70, + "x": 1470, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f6c107b1-1f6a-4db1-896f-15f0b574fefa", + "width": 70, + "x": 1540, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f9835191-ac46-4d0e-aff6-2b3eb6688515", + "width": 70, + "x": 1610, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f4fc9e52-7596-4aaa-8ad0-4987f7d1b592", + "width": 70, + "x": 1330, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a97989da-7671-4fa1-9216-a619c494f7ec", + "width": 70, + "x": 1400, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a8333718-b610-4507-a25a-af6f50753590", + "width": 70, + "x": 1260, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "41d98456-46f2-47e1-822a-de6fc87fa557", + "width": 70, + "x": 1190, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "205dc4d3-73ec-4b35-b062-d607744dea6b", + "width": 70, + "x": 490, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc345a7f-bbe1-4e1c-a410-ffa7c9e7c587", + "width": 70, + "x": 560, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb435e2a-9547-4353-90bb-6dc674fae5d6", + "width": 70, + "x": 420, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c737963-9284-4c4a-a5bd-ecbc42b6aa8e", + "width": 70, + "x": 420, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ac48281-b081-4d55-abd7-59a796ca929c", + "width": 70, + "x": 420, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2bab83f-0b21-4147-9f64-aabc02f2f60c", + "width": 70, + "x": 490, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "686a085e-73b5-4e46-ac2f-f25118bc27ae", + "width": 70, + "x": 560, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92b36048-1921-433c-a106-c75de40dff81", + "width": 70, + "x": 490, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56ef937d-e997-48ec-88a2-04444dd08508", + "width": 70, + "x": 560, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7432bde4-6b7d-4c9b-9346-e18782fa953a", + "width": 70, + "x": 630, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9aec6bad-e750-4e42-8d5e-76abf5ec3844", + "width": 70, + "x": 840, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "219265f3-dd0c-412c-94dc-e667cdf58341", + "width": 70, + "x": 770, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61ae6366-39d3-48f8-baf1-77dc2151e5ac", + "width": 70, + "x": 700, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87578644-b4fb-4108-a395-7fc48e5293fe", + "width": 70, + "x": 630, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20403a3a-bfb7-4282-a534-4ba54a4142ea", + "width": 70, + "x": 700, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a30cd11c-0cbe-4cec-b716-83e095303b98", + "width": 70, + "x": 770, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3231895-c246-4063-8d76-de2968df7132", + "width": 70, + "x": 980, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "662cab6c-3f75-4c95-a5e5-ff8351682c43", + "width": 70, + "x": 980, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f9a478d-dc4f-44cd-b402-5bd3bcfb75a5", + "width": 70, + "x": 840, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abfda71c-02cf-4acf-8427-f0f42ed47574", + "width": 70, + "x": 980, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a22d3727-b966-4b47-af99-92ffb3eab656", + "width": 70, + "x": 910, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea9c2ccd-116d-4dd4-a10e-50e3cf70c7b8", + "width": 70, + "x": 910, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcac54e4-f5f1-4fb3-8353-77f0b7778b75", + "width": 70, + "x": 910, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "192b3569-e9b9-43d5-998b-c37e2c81bd71", + "width": 70, + "x": 980, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d7019eb-7659-4e1c-90c7-55654867e06e", + "width": 70, + "x": 910, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c519c90-6114-4b71-bf2f-a57d09fa1234", + "width": 70, + "x": 980, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e673ff3-b8a7-4f50-8f2c-4ec3be3b006b", + "width": 70, + "x": 980, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e614d0c7-27f2-4975-ba8a-ae6ca166d59b", + "width": 70, + "x": 910, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b9f9bf-f73a-407d-8cbc-e3a13dc53144", + "width": 70, + "x": 910, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c55ca6a1-004d-41b1-9bb3-d315777ba5c8", + "width": 70, + "x": 910, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "915b7bc4-d865-4d44-b00b-491c4b2d2b2b", + "width": 70, + "x": 980, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f808326e-021a-4cd5-a68f-713be215bb49", + "width": 70, + "x": 1050, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90ff0c58-7ec7-4da3-a774-e007ef5efd5d", + "width": 70, + "x": 1050, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd9243de-317f-407a-afc2-796a1a192af0", + "width": 70, + "x": 980, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9051282c-ce48-4fb4-924d-afb4945ac327", + "width": 70, + "x": 1050, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6f9e88f-caed-4be8-806a-8441460cec6d", + "width": 70, + "x": 1050, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6c990a2-0436-4d92-b105-0dfb6e660076", + "width": 70, + "x": 980, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5893099-8900-4299-a738-b7fce3298011", + "width": 70, + "x": 980, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dcbbbc72-6b09-477d-ada4-3b130255c0f4", + "width": 70, + "x": 910, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7a73874-e9a8-4894-845b-15cb120a4b44", + "width": 70, + "x": 980, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2af6665f-5dd6-4adc-99b8-d2d15ebdfef6", + "width": 70, + "x": 910, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18013dbe-d7fd-4c7e-b2d0-281a873c9a59", + "width": 70, + "x": 910, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4845f030-1aa1-4ea0-afaf-f8c1deb102f7", + "width": 70, + "x": 910, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "22b61d57-1050-4978-b611-5fccc197aeca", + "width": 140, + "x": 630, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 14, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "77cb1f9e-6bef-46b0-8bdb-70aa4ca296a3", + "width": 140, + "x": 350, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "5f863ce2-76d6-4612-8531-0e72e902ace3", + "width": 140, + "x": 126, + "y": 3141, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "5533b630-7b6b-488a-b46c-8468b856197e", + "width": 140, + "x": 1190, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "441ed61f-1265-4c65-aa86-8c5c89d6227b", + "width": 140, + "x": 910, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "e3a27c7a-f704-47e5-ac7c-2cf75d4b55a8", + "width": 140, + "x": 1470, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "46116a74-c82b-489a-8722-14e8fc84c6cc", + "width": 140, + "x": 1584, + "y": 2125, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "659e0f50-c913-4b0e-b434-17a61be34adb", + "width": 140, + "x": 1304, + "y": 2125, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "45d62f23-766f-4d53-83e0-679075519a57", + "width": 140, + "x": 126, + "y": 2185, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7271123-185b-4768-8c90-5c0941efa8a6", + "width": 70, + "x": 2380, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c1a4d02e-52a4-432e-b3f9-73bdd865f5e9", + "width": 70, + "x": 2520, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7c9af17-d2d9-401c-82e1-25a4fe11322f", + "width": 70, + "x": 2450, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2716921d-3646-460b-a3a3-94aac43e3bf9", + "width": 70, + "x": 2590, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9370535f-d80e-431a-9581-de61f2017ed6", + "width": 70, + "x": 2030, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "19dcd4a6-3f64-4558-a745-6af2aba38268", + "width": 70, + "x": 2100, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "20689c2c-5670-485e-a31e-c7009ed56f56", + "width": 70, + "x": 2170, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dbff8b92-147e-412f-9187-347ed57b66e5", + "width": 70, + "x": 2240, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2dfd74b5-524b-4452-9b4a-f952f492bf96", + "width": 70, + "x": 2310, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bb1e818d-553b-455f-aa66-6f128f7012bb", + "width": 70, + "x": 1960, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9b83ddba-24b5-4848-9e28-6d379bccb56f", + "width": 70, + "x": 1820, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "84e2b3f6-cd43-40a7-a4fe-cd492d3e214b", + "width": 70, + "x": 1890, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0ddb1721-e496-4021-ad68-fa1c978e9d6a", + "width": 70, + "x": 1750, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ba9b2e79-f806-4a17-9dc5-bc151b2d68f1", + "width": 70, + "x": 2870, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "49b551a4-aca8-49dc-b092-d9ca7987b587", + "width": 70, + "x": 2660, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d5cb869c-bc86-4f9c-9378-9ac312629f91", + "width": 70, + "x": 2730, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "806686c5-3bec-4691-a9b1-4fbbd64f7ee0", + "width": 70, + "x": 2800, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e8bd910e-23b4-43c5-bd6f-e17a517d8d05", + "width": 70, + "x": 2870, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cd0f45fc-6abc-40fd-a70c-020e28e6d63b", + "width": 70, + "x": 2870, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "08ef7399-dece-40ff-837e-252019150802", + "width": 70, + "x": 2870, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7d6c1c9f-0b96-4eca-818d-952f81cb9465", + "width": 70, + "x": 2870, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45108584-2f3b-4bab-995b-062ad59ff9ea", + "width": 70, + "x": 2870, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "33511547-f08c-4d9c-b362-d5823875e180", + "width": 70, + "x": 2870, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5af4c433-0333-47fd-a7d7-0e89bbbd3a84", + "width": 70, + "x": 2870, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b625785-9d13-4097-9214-cda61ec683ce", + "width": 70, + "x": 2870, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8250ee98-d602-4797-8cef-19ee3c240e5b", + "width": 70, + "x": 2870, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "725eb193-5c27-4486-b8a3-2e2cfb574324", + "width": 70, + "x": 2870, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6e5b1020-08a2-431e-b384-ffe5e2a00704", + "width": 70, + "x": 2870, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "04e3986e-c400-4087-8328-ce90c7d6110b", + "width": 70, + "x": 2870, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea44194f-7c82-4055-b779-69b3641adfc8", + "width": 70, + "x": 2870, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "168bbb2f-a430-4eb8-a6cc-18ab0f61476c", + "width": 70, + "x": 2870, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "47e24764-d82b-4fdb-8b77-e1553ac0bdee", + "width": 70, + "x": 2870, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5e61d5be-f3d6-4120-8870-ce819be954a0", + "width": 70, + "x": 2870, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", + "width": 70, + "x": 1680, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "f74087e8-5bf5-4c62-bb50-5af0fc20d391", + "width": 0, + "x": 1610, + "y": 1803, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d7d6258f-c239-4446-8764-f6081976ac1e", + "width": 0, + "x": 1610, + "y": 1944, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ee9ff4b-f297-4f7a-8d3d-476284497305", + "width": 70, + "x": 3080, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b1797207-5739-4c89-b2ab-702d203e1709", + "width": 70, + "x": 3150, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "158adeed-3ba0-4bc2-8856-0bdf22b17436", + "width": 70, + "x": 3080, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a418c1ba-d731-459c-9457-04262d6d5689", + "width": 70, + "x": 3150, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "67b552a9-57f5-4f66-8e98-3b460ecaa71a", + "width": 70, + "x": 3080, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "183695d6-ef91-4790-bca6-96c89829f9cf", + "width": 70, + "x": 3150, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9b42062f-9087-4f70-ab84-dc5dbe943006", + "width": 70, + "x": 3080, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4ab624d-c44c-44a3-bd83-633bb0a0fdd4", + "width": 70, + "x": 3150, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30b22fdc-d3e2-4edd-b482-1f80a03b5d06", + "width": 70, + "x": 3080, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "157c2b49-faa6-4983-8d9b-dd4d2e176ddf", + "width": 70, + "x": 3150, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62b12e31-88ec-42ad-9304-7796f48b87a9", + "width": 70, + "x": 3080, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "23288e1a-8b18-4682-b34b-d263a7ee3712", + "width": 70, + "x": 3150, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ea4fb8a-37c8-4cae-bcc4-e987ff99f482", + "width": 70, + "x": 3080, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba79ea26-1b9c-4d76-8278-9addd200fc89", + "width": 70, + "x": 3150, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec3bedcb-b9b5-488a-ba16-69aef4dd0161", + "width": 70, + "x": 3080, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56b2845b-5c41-4604-9aee-19c320439dc5", + "width": 70, + "x": 3150, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3687e612-ed9b-42fd-b4b0-e4a6c646dc82", + "width": 70, + "x": 3080, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d19bf4a8-93e7-4635-831d-c23781e93f40", + "width": 70, + "x": 3150, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d890ec14-b9f7-45f4-b4d0-3f4b6de24762", + "width": 70, + "x": 3080, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ac599b3-9b5d-4f47-82da-4939ed18bf83", + "width": 70, + "x": 3150, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52bc591b-f4fc-4874-9be4-223e798e5a6e", + "width": 70, + "x": 3080, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4f0e8cf8-e767-4498-a355-2cd175f4ee6c", + "width": 70, + "x": 3150, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3084472c-b931-41d5-b91e-66acfc98004e", + "width": 70, + "x": 3080, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "767725d5-371b-4711-baa3-3033fd815572", + "width": 70, + "x": 3150, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d8ac935a-3722-4f46-9bbe-0aa1e878ccae", + "width": 70, + "x": 3080, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64ee35de-601a-4bbf-b297-de0218e7ab68", + "width": 70, + "x": 3150, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f3f5f40-951f-4c03-9a4f-7d3466db3a1d", + "width": 70, + "x": 3080, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "638af857-4eea-4d48-92e4-3204c9f66ed1", + "width": 70, + "x": 3150, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0ff9a0d-aa62-43b6-8ed3-352b3be155b2", + "width": 70, + "x": 3080, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "997b15a5-b19b-48cf-a6b8-6eaa1a4d98bf", + "width": 70, + "x": 3150, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd9b33e2-87cf-4184-93c2-94825eef0123", + "width": 70, + "x": 3080, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70c5fd24-219a-495e-8391-12bab4bb850b", + "width": 70, + "x": 3150, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a6ff9cf-82e6-4a70-a526-a8728043c7cd", + "width": 70, + "x": 3080, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f69c92c1-2a84-498c-8602-d61261815df8", + "width": 70, + "x": 3150, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3749f72-eece-4648-a292-abf23c4074d9", + "width": 70, + "x": 3080, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed7f0166-abfa-4191-8fa9-a46239161233", + "width": 70, + "x": 3150, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6ce4fc5-1d99-4396-9db7-2805a43325e7", + "width": 70, + "x": 2940, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1eca040b-661e-4c96-9c48-dca32183af01", + "width": 70, + "x": 3010, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9db1c70-e25e-4a75-99b8-2762435e763a", + "width": 70, + "x": 2940, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "809f91d5-5183-4b05-8d04-499e7919e175", + "width": 70, + "x": 3010, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbcde2a9-9eaf-4f39-9a7a-9af9e5cea827", + "width": 70, + "x": 2940, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08cdcb23-b132-46c0-ad9a-5e27133b8d4d", + "width": 70, + "x": 3010, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f57eb58-b056-4617-91b0-b8a632cc51ee", + "width": 70, + "x": 2940, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ef6e2ab-1447-4643-bd22-fd07dba62b43", + "width": 70, + "x": 3010, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2bb31941-fd71-4456-a6d8-0de4f61966b4", + "width": 70, + "x": 2940, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "948a38d7-6bf1-440b-a47f-bcd9b6cf4abe", + "width": 70, + "x": 3010, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f5059e3-36db-4da9-9832-c2c7ad227fe9", + "width": 70, + "x": 2940, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f01ab895-b3d0-4a8b-9d84-25b857346fe3", + "width": 70, + "x": 3010, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ada0399d-8fef-41ba-9a72-965f9b8f105c", + "width": 70, + "x": 2940, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f5f227f-b2fc-4802-b5ea-394300131322", + "width": 70, + "x": 3010, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ce903dc-bb50-4385-b863-48f707b6db90", + "width": 70, + "x": 2940, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9d825cb0-f0cb-48e5-93b5-98368f03721a", + "width": 70, + "x": 3010, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a5bab17-92b6-4dba-b8c7-492b59fa8fdf", + "width": 70, + "x": 2940, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64fb44af-3bd8-48b8-bb9a-29c0db1805c3", + "width": 70, + "x": 3010, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c54ef18d-e742-41ec-a857-84b36c063902", + "width": 70, + "x": 2940, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48a399cb-b611-4b5a-99b6-74b831296cbf", + "width": 70, + "x": 3010, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e3fb31c9-43ab-490b-9b23-b60b90a5a6be", + "width": 70, + "x": 2940, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79ed71d9-b6da-4355-b4d1-b602aa1bd270", + "width": 70, + "x": 3010, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cbd98a1-dac4-4fdd-bc86-8ef1fc716369", + "width": 70, + "x": 2940, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b949e377-dde1-4ae6-87b9-eb2a6e89b904", + "width": 70, + "x": 3010, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "735701af-2741-4745-9790-63a267ee828e", + "width": 70, + "x": 2940, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "190e7e9c-a4df-440c-bf74-55d70211e524", + "width": 70, + "x": 3010, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b79ef89a-7178-4b80-a263-e89a921aa6ac", + "width": 70, + "x": 2940, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe5ce019-ae55-44c3-9916-18ffdc65ac4c", + "width": 70, + "x": 3010, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f07a886-09a2-465b-9f61-990c6a4382e8", + "width": 70, + "x": 2940, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2527fd7f-3ec2-4d0f-9e60-6d55d4f5cbf5", + "width": 70, + "x": 3010, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0691f845-1af6-4545-8f7f-e6c59dd952d1", + "width": 70, + "x": 2940, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9f94936-305e-42d2-8d7d-9e58650bce40", + "width": 70, + "x": 3010, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c598e59-ed8d-450f-b2e6-f6a8b16feb6d", + "width": 70, + "x": 2940, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f79831d7-5398-486c-851d-115effa61db3", + "width": 70, + "x": 3010, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc0eebf8-306f-4dc3-89be-ca7118e9edf0", + "width": 70, + "x": 2940, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3338b8cf-0a0c-4511-b549-f5759715240f", + "width": 70, + "x": 3010, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b2d8984-4c06-4272-b7e7-3264e23234d1", + "width": 70, + "x": 2940, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "375eee19-95f5-486b-9dc0-6622011d1803", + "width": 70, + "x": 3010, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61a73149-7a26-4c35-a70b-ffddf6e45560", + "width": 70, + "x": 2940, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce414fcc-5964-427c-8aba-cde219af3107", + "width": 70, + "x": 3010, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "363f7cc4-3049-427d-b117-f693f6b48544", + "width": 70, + "x": 2940, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6926c3ce-6241-4894-8a45-3f1810805225", + "width": 70, + "x": 3010, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da7a6745-cbd7-46dd-affa-576e6cf77f3f", + "width": 70, + "x": 2940, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47044eb9-420c-4107-8ae1-69014527b043", + "width": 70, + "x": 3010, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "523b7f1f-cbcb-4381-8fbf-6e4b0ec9338a", + "width": 70, + "x": 2940, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abc87865-5b92-42db-9458-35183a25b219", + "width": 70, + "x": 3010, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e44952bd-0514-4fa4-b552-ea0ea39e819f", + "width": 70, + "x": 2940, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a265d631-fa9f-408a-b227-457304de3ad7", + "width": 70, + "x": 3010, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f160aaf2-91fb-4cdd-b0dc-41797ff8ec47", + "width": 70, + "x": 2940, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71add1a8-ced3-489c-9fdb-9395e22691b1", + "width": 70, + "x": 3010, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d14b557a-5e0c-4ade-bd01-97d4625d808d", + "width": 70, + "x": 2940, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71806cae-0d84-4322-861d-830707a2567d", + "width": 70, + "x": 3010, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "123cf952-b22e-424d-82d0-5dc35c40f0ff", + "width": 70, + "x": 2940, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e8dd259-f137-4a91-8ae4-6d55ffd32e14", + "width": 70, + "x": 3010, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0958302c-4d83-45dd-aa71-ea311727f694", + "width": 70, + "x": 2940, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "695f3ee9-c4a9-46be-bc72-8b45f1adb2b1", + "width": 70, + "x": 3010, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1385a91a-4059-4c2b-9b04-35d5a0bb01f4", + "width": 70, + "x": 2940, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f39da00-29d3-435b-9e18-69837758ea72", + "width": 70, + "x": 3010, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d4c1fbb-ee7d-40af-b93b-b12bcb54b43a", + "width": 70, + "x": 2940, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee1d1a68-9895-4c96-b119-eb48e0ed9786", + "width": 70, + "x": 3010, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6477a0ae-886d-4fdb-8940-b4adba8caf37", + "width": 70, + "x": 2940, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c089291f-0aed-4658-b698-a6d5e247fb32", + "width": 70, + "x": 3010, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f804a2b8-b77e-4d4f-ab84-32f37e80bfdb", + "width": 70, + "x": 2170, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "02048fa1-fc22-4354-aa5d-1f54b0d96e75", + "width": 70, + "x": 2240, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ada9f06a-8e9b-4456-aee8-f542d4e09fa1", + "width": 70, + "x": 2170, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af3909b9-9b91-496f-820a-2fb733bf5cff", + "width": 70, + "x": 2240, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38e19f54-832e-44f9-8f20-3eada258d1dd", + "width": 70, + "x": 2310, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8339acad-1cde-4da6-b905-6fc58d008d14", + "width": 70, + "x": 2310, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "600c2e5b-ac35-48ce-bcb7-9f8f57272037", + "width": 70, + "x": 1820, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1008b10b-246f-45b3-abff-863b8a18868a", + "width": 70, + "x": 1890, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97542886-57c1-4e16-98f2-9546b51093c0", + "width": 70, + "x": 1820, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aef5ab2f-78e0-4036-8ee1-5fc6b662fe5f", + "width": 70, + "x": 1890, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2120a881-3494-43d6-9164-03d2c8aa0270", + "width": 70, + "x": 1960, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb4c4f32-bed1-4269-9c61-17dc172c061f", + "width": 70, + "x": 2030, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7905d17-823e-422c-8ed2-802047a63797", + "width": 70, + "x": 1960, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a6ad1cc-0ebe-4499-a755-be2aa5b0570d", + "width": 70, + "x": 2030, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8261608d-acbb-4d23-97e0-ba477e80acfa", + "width": 70, + "x": 2100, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d292fbc-945a-45d9-b1d3-1390f4d97f12", + "width": 70, + "x": 2100, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00169f9c-f759-43aa-ad30-dadff6e4976d", + "width": 70, + "x": 1750, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a15c5a5-3eac-434d-ae73-bcbf862d015f", + "width": 70, + "x": 1680, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6be504bc-8139-4253-b18a-75a3668ba45a", + "width": 70, + "x": 1680, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c730ba7-584e-4f6f-8a2b-f23512391363", + "width": 70, + "x": 1750, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7df5811b-5eef-4ee6-a946-363af4f599f4", + "width": 70, + "x": 2870, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "313ccecf-f6a2-43dc-a30f-6a2ec8db0abe", + "width": 70, + "x": 2870, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "35b1a0d1-a22b-4754-8dfb-9b31ebc9d80c", + "width": 70, + "x": 2520, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c11cb813-0825-484d-b037-84128ae2bdac", + "width": 70, + "x": 2590, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf07e3ce-8896-4896-9078-a8695a722cb7", + "width": 70, + "x": 2520, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef9a1474-da4a-49f2-b6d1-78e4b0a435e8", + "width": 70, + "x": 2590, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "293dc4f4-b2d1-4400-80af-251d1e2c8e29", + "width": 70, + "x": 2660, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0227c3b-0575-4ba1-814d-a6f48033523e", + "width": 70, + "x": 2730, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8cbe2c0e-6ef4-48ec-93ab-6a67e2173fa0", + "width": 70, + "x": 2660, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0314c448-5d74-481d-aed7-5162b4f96402", + "width": 70, + "x": 2730, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5074403d-fe8f-4fad-a8d5-19e30f346e6d", + "width": 70, + "x": 2800, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0bee87dd-0872-41f8-87eb-591141a9e4ff", + "width": 70, + "x": 2800, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17f7b1ee-78af-4dad-808a-d5f62d1a8954", + "width": 70, + "x": 2450, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3fb1e545-4bf6-4ebe-9417-41f21c8d53f0", + "width": 70, + "x": 2380, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64cbd0ef-1c49-4ac8-bd9a-1923f268efb5", + "width": 70, + "x": 2380, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c67936d9-de7a-4498-a1cc-749dabd07a97", + "width": 70, + "x": 2450, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9d26cf8-c2c6-4d30-a103-eb8bed8e2925", + "width": 70, + "x": 1120, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d0872ec-5354-4cac-a6d5-5fe5e54b94fe", + "width": 70, + "x": 1190, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fc67a94-9cc9-49c7-a23e-ec7929c976eb", + "width": 70, + "x": 1120, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6230dcc8-7764-48b1-8392-cec8b826eda3", + "width": 70, + "x": 1190, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "377c99b3-66d7-445a-a6d7-945dc7300194", + "width": 70, + "x": 350, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f140c7-5104-4366-8023-ce2a2741f30c", + "width": 70, + "x": 420, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b64bb96-a729-4131-8a8c-a5dd4fd3c8c1", + "width": 70, + "x": 350, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "72afa7df-2709-4112-ab53-7f0303eacfb2", + "width": 70, + "x": 420, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4aac1e7d-b51d-42c6-8dfb-9cc0d830c7f6", + "width": 70, + "x": 490, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "46da4b4a-22ad-436c-812b-b20088180454", + "width": 70, + "x": 490, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bb55f5f-0b1b-4057-8fec-712630ef2d51", + "width": 70, + "x": 0, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3b55c2f-b34e-4b13-acbd-91fde3219d55", + "width": 70, + "x": 70, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "25b63eef-2bd9-44c6-aa6e-44ae15382969", + "width": 70, + "x": 0, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "381ae918-a98e-4360-9290-ebf808256776", + "width": 70, + "x": 70, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee158e05-dd9d-4af9-8c2e-9fdc8b874d3a", + "width": 70, + "x": 140, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96f637e6-0f80-497c-aa46-0107ac00b481", + "width": 70, + "x": 210, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41964124-f593-406a-906d-78dfa9e752e5", + "width": 70, + "x": 140, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d248ab1e-d63d-4e34-94c9-1f6b59bd14ec", + "width": 70, + "x": 210, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b61dafc-1609-421b-bed7-d39216b1adbc", + "width": 70, + "x": 280, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4fdf9a4-5535-4883-8449-83dd9ac069e7", + "width": 70, + "x": 280, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ffa26a2-7c6f-4ba9-9a40-8eb3d5f2dd15", + "width": 70, + "x": -70, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ee3482c-c697-4811-91c8-158d8fedaf86", + "width": 70, + "x": -140, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dee244e5-4836-45e3-ab62-a2caf92d167d", + "width": 70, + "x": -140, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d71dacc7-4173-482d-9cbf-76aae714c050", + "width": 70, + "x": -70, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f785d620-5ee1-49e2-93ee-8db3bc96a1ba", + "width": 70, + "x": 1050, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a65da36-2606-417d-9c89-bc97712f6de6", + "width": 70, + "x": 1050, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "217b60a2-29cf-413d-8483-843424d7923c", + "width": 70, + "x": 700, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdb93f2f-c58f-4a38-a56c-a91782114d5b", + "width": 70, + "x": 770, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1bc4442e-c035-49b6-befe-de5850b5c65b", + "width": 70, + "x": 700, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98e0e73d-732b-4c89-bea8-bccf24c50260", + "width": 70, + "x": 770, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc946573-e7b3-47bc-bf9c-3a88df516152", + "width": 70, + "x": 840, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82764079-5b47-43c7-9fe4-8547cc2a93ca", + "width": 70, + "x": 910, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62258e2f-a743-4623-9801-83e424cdf9fe", + "width": 70, + "x": 840, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2f0f3fe-cd92-4c6d-ae48-f9e8e9d08f4d", + "width": 70, + "x": 910, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76ef79f5-a4a1-4ceb-9ec6-77b94b7cdd34", + "width": 70, + "x": 980, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66db1afc-3032-4ebb-b28d-20cd0ee3481a", + "width": 70, + "x": 980, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5894286c-870d-45e6-aaeb-875275e78517", + "width": 70, + "x": 630, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef277cc6-fbd8-450e-bcb5-7b92cde98201", + "width": 70, + "x": 560, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ad26e6b-8e48-460a-a99c-da34439eac07", + "width": 70, + "x": 560, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1c9e3eb-714a-40f7-9c63-4794f6125b13", + "width": 70, + "x": 630, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cd5885e-31c4-4f47-83ef-b4b03e6daab9", + "width": 70, + "x": 1750, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a480ce00-5937-42bc-8fb6-d54e918660b0", + "width": 70, + "x": 1680, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e12a51a6-0c17-4cd2-b1e7-6ca891fcf230", + "width": 70, + "x": 1680, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b58d2948-22b7-44c6-b07f-5c16f6b9d2b1", + "width": 70, + "x": 1750, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df6e1896-3fb1-471a-b644-4350a6b41c51", + "width": 70, + "x": 1750, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5216a0cf-1afa-417d-b318-5323c1ad4b28", + "width": 70, + "x": 1680, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cac65707-2130-46c6-9150-bef4f9c330ae", + "width": 70, + "x": 1750, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa1d9363-4217-493f-9c8f-a13a9e5bfa36", + "width": 70, + "x": 1750, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4e718d2-e3c1-476c-9049-4eb624a01d47", + "width": 70, + "x": 1400, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4141e308-5677-4685-ab69-11fa5910b691", + "width": 70, + "x": 1470, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "84253ec8-9e27-4c12-8aae-f4c325920ca2", + "width": 70, + "x": 1400, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21f4ac88-6b92-4479-8349-285ddede5773", + "width": 70, + "x": 1470, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aab3920b-2d81-47d8-9336-10981b8f1624", + "width": 70, + "x": 1540, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c00a7288-6b54-4dfc-a34a-a23a2c2c1e7a", + "width": 70, + "x": 1610, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "889ac785-6223-4387-899b-67157d80281e", + "width": 70, + "x": 1540, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b882bbf4-f210-40d8-9009-25d7aef580c1", + "width": 70, + "x": 1610, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11643d97-345c-405c-b55c-a43bace67833", + "width": 70, + "x": 1680, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dae9b41d-1a41-4edd-a3c8-79abceee0a46", + "width": 70, + "x": 1680, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8dddb32f-54e4-4187-b4f8-28f1f2c10020", + "width": 70, + "x": 1330, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e82e91a-527e-4464-a809-98c5fa27b2e0", + "width": 70, + "x": 1260, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9ec91aa-2a8d-4908-baca-4ff267122385", + "width": 70, + "x": 1260, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e189d7da-d75e-4a7c-8a2b-70d244f0de6e", + "width": 70, + "x": 1330, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "c35bcf53-b789-4163-8995-d72b80c4c806", + "width": 0, + "x": -122, + "y": 3188, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "green_leaves_particle", + "persistentUuid": "cba4acd9-0250-47fe-8582-da0034598875", + "width": 0, + "x": 271, + "y": 1480, + "zOrder": 1253, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "trash_movable", + "persistentUuid": "531cda43-5daa-48a2-9b26-6dea1106bd1f", + "width": 70, + "x": 1890, + "y": 2730, + "zOrder": 1254, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 54, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ed415228-77d3-436c-847f-b90b6c9520db", + "width": 0, + "x": 140, + "y": 3290, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -47, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "5df41048-4014-4755-82c5-412eac15d5a4", + "width": 0, + "x": 560, + "y": 3229, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 18, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "637a61c4-0533-45b0-84cb-21e8d85631c8", + "width": 0, + "x": 1190, + "y": 3290, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 28, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "14e6320a-368a-413a-ade1-8bb6fc9ac942", + "width": 0, + "x": 1689, + "y": 3150, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 53, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "7415f961-d4b6-4b0b-acf1-6c1843edf4dc", + "width": 0, + "x": 2109, + "y": 2901, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "b7c52dee-dcfa-4864-a3fb-2e6a098e1754", + "width": 0, + "x": 2520, + "y": 2940, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -38, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ca0a8b2e-569e-4146-86b7-9d350f89d8ee", + "width": 0, + "x": 2870, + "y": 2879, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -107, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "cd023872-90a4-4c72-b921-3763b8e7078e", + "width": 0, + "x": 3010, + "y": 2730, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 20, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "9acc6143-5f47-47df-9ebd-dd14d974ad5e", + "width": 0, + "x": 2957, + "y": 2450, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 134, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "6a6266c7-7c08-43e9-9b1a-2e564d003738", + "width": 0, + "x": 3010, + "y": 2030, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 68, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "52ce10ae-e9fa-4b28-b900-a3ee6d4f5d7c", + "width": 0, + "x": 2969, + "y": 1610, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -58, + "customSize": false, + "height": 70, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ec4a4612-c1fb-40c5-8b9d-816e781460bf", + "width": 70, + "x": 3010, + "y": 1120, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89cc239b-3682-42b7-852e-1567691db2e3", + "width": 70, + "x": 3080, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc720b0a-4873-4073-a02f-43c60047fff0", + "width": 70, + "x": 3150, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -112, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "dcd05f20-59a6-4ab4-b3c8-d540a3979301", + "width": 0, + "x": 3150, + "y": 630, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -118, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "487647e1-3ee7-4b30-b24b-3307608b22f8", + "width": 0, + "x": 3096, + "y": 210, + "zOrder": 1236, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -60, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "7f101c6e-eb6c-4b96-a4b9-6c6e23592c43", + "width": 0, + "x": 3150, + "y": -140, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 770, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", + "sealed": true, + "width": 1540, + "x": 1680, + "y": 1120, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "baf5ced5-a3dd-423c-bff1-e4ab4a316c63", + "sealed": true, + "width": 2100, + "x": -140, + "y": 3150, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1750, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "aba688b4-8fa1-4ea4-86d2-c130686bbad3", + "width": 2030, + "x": -1120, + "y": -490, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "ecbfecde-16b0-4863-8299-8a2fb59fb93a", + "width": 140, + "x": -1260, + "y": -490, + "zOrder": 1256, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "102f5637-9e1a-443d-a42d-aa0c73fb3177", + "width": 2450, + "x": 910, + "y": -490, + "zOrder": 1257, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "d7469110-1aac-4cab-b910-0c060b0abce0", + "width": 140, + "x": -2730, + "y": 3360, + "zOrder": 1258, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "41374744-530b-4bcf-82f3-f7dda8530f63", + "width": 140, + "x": -280, + "y": 3360, + "zOrder": 1259, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "38a806fb-516e-4754-8b47-2d0062ed55cf", + "width": 350, + "x": -3570, + "y": 3640, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "fdf2b692-7cbc-41fb-bd1d-bfe8719bb4d1", + "width": 350, + "x": -3150, + "y": 3640, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "1b0f0c9a-4810-4d6c-bd33-862d91616564", + "width": 350, + "x": -3150, + "y": 3990, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "76a36fac-78ea-426e-b5a8-7d0a264d945f", + "width": 350, + "x": -3570, + "y": 3990, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "e9b113e4-2c3c-4005-a601-ae1051b77e40", + "width": 350, + "x": -3150, + "y": 4340, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f9e7ef8a-c8c2-478b-90c1-0a4e92327c28", + "width": 350, + "x": -3570, + "y": 4340, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "895e459d-af96-428b-9650-a2714ef3d04b", + "width": 350, + "x": -3150, + "y": 4690, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "e12b8a99-ac10-44b3-ac99-4d9b1f24db16", + "width": 350, + "x": -3570, + "y": 4690, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "092c2f41-e17c-4a41-bf4a-7e7596a32bbe", + "width": 350, + "x": -3150, + "y": 5040, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "53c646ac-98b4-4cff-bbf4-ece1c712089d", + "width": 350, + "x": -3570, + "y": 5040, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "ce70ba42-80db-4a95-a346-7db0a71a2034", + "width": 350, + "x": -3150, + "y": 5390, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "a3cf8ee3-3c6b-48ea-a8c6-6f3c002c759e", + "width": 350, + "x": -3570, + "y": 5390, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "94d3ce29-5648-45a3-a9df-234333d1c1d6", + "width": 350, + "x": -3150, + "y": 5740, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "3f599dd2-8069-4e8f-8982-14219715ea60", + "width": 350, + "x": -3570, + "y": 5740, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "3e3317b1-d82c-4c9f-9b71-a612550f8391", + "width": 350, + "x": -3150, + "y": 6090, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f2cb5fa1-2572-4c2f-a744-4f61637e4c3a", + "width": 350, + "x": -3570, + "y": 6090, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "b0f2a5ec-b67c-4496-a304-6bc3a32fcd72", + "width": 350, + "x": -3150, + "y": 6440, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "485cd6d0-5660-42cc-8abe-d5b64cf4eacc", + "width": 350, + "x": -3570, + "y": 6440, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "9b937dfc-9d28-450d-b8c1-80834df3aabf", + "width": 350, + "x": -3150, + "y": 6790, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "50086363-198c-43d6-9e21-d07de2f2638f", + "width": 350, + "x": -3570, + "y": 6790, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "77b08fc1-04cd-4040-8bb1-c1e9edec7b56", + "width": 350, + "x": -3150, + "y": 7140, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f49921fa-2095-4a09-95e2-41523f510132", + "width": 350, + "x": -3570, + "y": 7140, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "4244cce5-d7c9-4b94-9c12-a8bf726dc0a8", + "width": 0, + "x": -3234, + "y": 3810, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "01638110-3d70-42e3-8611-9ce8ea7c4f2d", + "width": 0, + "x": -3232, + "y": 3672, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 3990, + "layer": "", + "name": "road_1", + "persistentUuid": "e583ab96-139f-4b62-945d-1665d25abd31", + "width": 70, + "x": -3500, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "depth": 1, + "height": 3990, + "layer": "", + "name": "road_1", + "persistentUuid": "962bf66c-4701-4b9b-acc3-8c2d1a932210", + "width": 70, + "x": -2940, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3990, + "layer": "", + "name": "road_2", + "persistentUuid": "a549ac99-8158-4b76-928a-56a418b49cd3", + "width": 70, + "x": -3220, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "367b9fb5-f764-47a9-abf0-b4bca3be3e64", + "width": 0, + "x": -3232, + "y": 3990, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "5f5776b6-0228-4b20-b536-48c3a449edf8", + "width": 0, + "x": -3232, + "y": 4200, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "699a89e0-f262-4922-94f4-06b677b1690e", + "width": 0, + "x": -3232, + "y": 4410, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9343d17c-7821-403e-bec3-1ea7e8c34047", + "width": 0, + "x": -3235, + "y": 4620, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "aa4ebfe0-4339-402d-a4a2-3f3f9aa09888", + "width": 0, + "x": -3231, + "y": 4830, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "e50ff460-d090-4876-b460-3e13f875d7ea", + "width": 0, + "x": -3233, + "y": 5040, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "e12d6482-65fc-4eec-bb1c-af70e2f5b587", + "width": 0, + "x": -3232, + "y": 5250, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "eeeff3f5-f20b-4b65-a8ca-ef0a18a694dc", + "width": 0, + "x": -3234, + "y": 5460, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d9cf91a6-0d2d-481e-9d5f-3c76bc9fb8d3", + "width": 0, + "x": -3233, + "y": 5670, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "6889692b-bb8a-42f5-b92e-7d05884c3956", + "width": 0, + "x": -3233, + "y": 5880, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9b1b9e09-c7d4-44b3-9099-cc28987bc93d", + "width": 0, + "x": -3233, + "y": 6090, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "99b93efe-61bd-4898-a661-f4f073ff5daf", + "width": 0, + "x": -3232, + "y": 6300, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d161e608-d6a7-4475-b6b1-c724d1ec524d", + "width": 0, + "x": -3232, + "y": 6510, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d061e83a-2103-444d-a61e-36eee1a38700", + "width": 0, + "x": -3233, + "y": 6720, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "1e5c958a-d494-4bf4-b1dd-efcb1c13d9aa", + "width": 0, + "x": -3235, + "y": 6930, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", + "width": 0, + "x": -3234, + "y": 7140, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3920, + "layer": "", + "name": "concrete_1", + "persistentUuid": "e50b3ae6-01f4-498f-a424-fbe09e890138", + "width": 70, + "x": -3570, + "y": 3640, + "zOrder": -2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3920, + "layer": "", + "name": "concrete_1", + "persistentUuid": "9c82384e-7f20-4090-9104-2af969cc37d2", + "width": 70, + "x": -2870, + "y": 3640, + "zOrder": -2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "e7a6ff30-5b2a-44b8-8da9-b91a57a61740", + "width": 140, + "x": -2870, + "y": 3570, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "56857c88-d539-4ba6-a8a7-6353fa6b857c", + "width": 140, + "x": -3640, + "y": 3570, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3845, + "layer": "", + "name": "hidden_separate", + "persistentUuid": "0ef98db6-7d9e-4b22-b706-6a5abfdfdf6b", + "width": 15, + "x": -2814, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3845, + "layer": "", + "name": "hidden_separate", + "persistentUuid": "1b7bf7dc-0ec4-4303-ae2e-d04e742028db", + "width": 15, + "x": -3567, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "94388d24-a7b5-4459-80ce-eb0c863cb0dc", + "width": 70, + "x": 3220, + "y": 3080, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b79fc1bc-fab8-4c27-9b03-4787305df5de", + "width": 70, + "x": 3220, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c9f53b1-3dd9-443d-8985-d3f69dd1b3d2", + "width": 70, + "x": 3220, + "y": 3010, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b9d5620-26e0-488c-8bbc-92cd2227063e", + "width": 70, + "x": 3220, + "y": 2940, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cab0ab87-48a8-4d14-ae31-190c2a4c6611", + "width": 70, + "x": 3220, + "y": 2870, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "10a2d0b9-7176-4684-9adb-78b19cc4c766", + "width": 70, + "x": 3220, + "y": 2800, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a900117-b1c4-4e5a-9d5c-956f1696793b", + "width": 70, + "x": 3220, + "y": 2730, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6fd3a72b-33e0-4abd-aa56-86223ce7ffa6", + "width": 70, + "x": 3220, + "y": 2660, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "135e5de9-4fd6-40ee-9622-8060eca75481", + "width": 70, + "x": 3220, + "y": 2590, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0176bf7c-d318-4bda-93d5-59175384cb96", + "width": 70, + "x": 3220, + "y": 2520, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "60b06f8a-1cad-4f3f-9819-beefaddff3cb", + "width": 70, + "x": 3220, + "y": 2450, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f3c6867-a1eb-4132-99f8-53787743649d", + "width": 70, + "x": 3220, + "y": 2380, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd3ee937-5aec-4274-9445-42c159fff743", + "width": 70, + "x": 3220, + "y": 2310, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50455268-0d3c-4af4-9b30-f43a9bf5e60a", + "width": 70, + "x": 3220, + "y": 2240, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f4db797-87a8-421f-aeb9-44eca0f6646f", + "width": 70, + "x": 3220, + "y": 2170, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6cdff58-852e-4695-8503-e1d3c3848487", + "width": 70, + "x": 3220, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "792d138e-cfc5-45a6-85fb-8f1eff956449", + "width": 70, + "x": 3220, + "y": 2030, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbbaec7e-98ad-40e3-8d7a-7ce89ee9d960", + "width": 70, + "x": 3220, + "y": 1960, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11b3b9ce-300b-4d51-9010-a4e81a9c1c9f", + "width": 70, + "x": 3220, + "y": 1890, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a466cb5-d0f5-4db1-8815-2725528d5a83", + "width": 70, + "x": 3220, + "y": 1820, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd664f6c-a628-41dc-891a-4570a6ced4e9", + "width": 70, + "x": 3220, + "y": 1750, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34e3797e-9ddc-4da5-b3d7-6d2915d650a3", + "width": 70, + "x": 3220, + "y": 1680, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04d6b381-a25f-4599-9871-48e3f5cbd248", + "width": 70, + "x": 3220, + "y": 1610, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "279b179e-be17-4963-8286-1a4d32adff43", + "width": 70, + "x": 3220, + "y": 1540, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "656615c1-a607-4c86-a9d7-b17ad00f6a9c", + "width": 70, + "x": 3220, + "y": 1470, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "675decc9-3e72-48de-bda2-c640154893fb", + "width": 70, + "x": 3220, + "y": 1400, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c16812c4-5fcf-4be4-a095-85dc6095fcff", + "width": 70, + "x": 3360, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f1c6247-a682-4d92-b2e6-5e8c76545498", + "width": 70, + "x": 3220, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "362f2a14-9977-4d17-8c19-c1f1e9d7c349", + "width": 70, + "x": 3220, + "y": 1190, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "023f9fba-6d0a-46e6-b68e-d464ec02022a", + "width": 70, + "x": 3220, + "y": 1260, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f121e5f-b6f5-4d2b-b007-623617562250", + "width": 70, + "x": 3220, + "y": 1330, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac740f90-4902-427e-9cc9-033c28ace14a", + "width": 70, + "x": 3290, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b5317dc4-8507-46e7-a18c-887c11f0eadb", + "width": 70, + "x": 3360, + "y": 980, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "549246ff-f158-4a4c-9fba-a8f2fff3dab1", + "width": 70, + "x": 3360, + "y": 1050, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b00f3f7-5bfb-4ff2-a2c0-a9005456b248", + "width": 70, + "x": 3360, + "y": 840, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "457fc91e-1c85-48ae-a464-63df3f73216a", + "width": 70, + "x": 3360, + "y": 910, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f70c009-fc0a-4e01-b03d-de00f54fe71c", + "width": 70, + "x": 3360, + "y": 700, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5d4ae15-fde0-4321-b4a7-bef52ee5d524", + "width": 70, + "x": 3360, + "y": 770, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "619c4678-e015-4925-b2ed-0c121d72a713", + "width": 70, + "x": 3360, + "y": 630, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcba22e3-24b1-4534-ae12-a284ad147dc1", + "width": 70, + "x": 3360, + "y": 490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cfacffdd-6eff-4c29-ba16-c431274dffbf", + "width": 70, + "x": 3360, + "y": 560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "32bade4a-abd7-4447-b76c-15a9eb466996", + "width": 70, + "x": 3360, + "y": 350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c8c5633-9311-424e-964a-5b1b85a4360c", + "width": 70, + "x": 3360, + "y": 420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f78446a2-5335-4085-b80e-165fe3c89973", + "width": 70, + "x": 3360, + "y": 280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd529572-e275-4fcd-bda2-c27691c2f794", + "width": 70, + "x": 3360, + "y": 140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "685641d0-85dd-4757-bdc1-ace0751f9d12", + "width": 70, + "x": 3360, + "y": 210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc6070c6-bd4d-44d7-a032-560258940ab3", + "width": 70, + "x": 3360, + "y": 0, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5edf1410-2ae0-4fc0-8004-932fe3f41a62", + "width": 70, + "x": 3360, + "y": 70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "858a8d10-e09b-4b1e-97c9-cf064a1192a7", + "width": 70, + "x": 3360, + "y": -70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a01ca1ae-4382-49bd-9338-fe0db674a97c", + "width": 70, + "x": 3360, + "y": -210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc560ad0-d360-4616-9dde-81c119176c6f", + "width": 70, + "x": 3360, + "y": -140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17941190-a016-45ae-a02a-c9b00d17a0a5", + "width": 70, + "x": 3360, + "y": -350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daa50f30-0807-4ded-a9d5-378bf482aeb7", + "width": 70, + "x": 3360, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6d6e601-dc66-4377-af95-351c5c69913f", + "width": 70, + "x": 3360, + "y": -420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c3a8caa-08b4-4be6-85c1-4845cea12b44", + "width": 70, + "x": 3360, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8912593e-238a-402d-8c03-522b39025b59", + "width": 70, + "x": 3360, + "y": -490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2bb9cce-842e-465c-a426-25df49e8e94d", + "width": 70, + "x": 3220, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ed216a3-2dd0-4c79-9df6-1229fbfa651a", + "width": 70, + "x": 3290, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e26992d-3cc1-4ac4-886c-856e77490f80", + "width": 70, + "x": 3150, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe175bd9-b38a-482a-96a6-44f763fb93d6", + "width": 70, + "x": 3010, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63e9f096-b087-4a80-a9e8-ca90a1716352", + "width": 70, + "x": 3080, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b70b588b-4871-4ced-8924-f337b4705463", + "width": 70, + "x": 2870, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f5bb7ce-1901-4449-aa98-a106e266ad85", + "width": 70, + "x": 2940, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bce86c0-61b3-44cb-b9b2-3db17c52fc49", + "width": 70, + "x": 2800, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11335e74-c246-48ec-83d7-17a6883fb477", + "width": 70, + "x": 2660, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "650a66c7-048c-4b4d-b789-e48c56584955", + "width": 70, + "x": 2730, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7282b7c5-1952-4431-82a5-77fd892dcd29", + "width": 70, + "x": 2520, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "209f6d74-6121-4d25-ae7a-647c84c42000", + "width": 70, + "x": 2590, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed4d28f9-657d-42a9-bd09-93a50a038693", + "width": 70, + "x": 2450, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e50ecb8-1a91-4ed4-ae3c-7c31e594bd31", + "width": 70, + "x": 2310, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74652814-ab4d-4d2b-af09-79c63b5eac91", + "width": 70, + "x": 2380, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ac3d6a8-0ae1-4541-becc-caf3d5174909", + "width": 70, + "x": 2170, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20ff5682-0280-41f1-8a1d-fa4929f9c87a", + "width": 70, + "x": 2240, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86adae75-7bb5-4d4c-bf8f-954d4b3a9f9a", + "width": 70, + "x": 2100, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390c118d-79e4-4543-8759-0b92aa005b75", + "width": 70, + "x": 1960, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90baef04-0161-46f8-9267-5fc7b0ad8942", + "width": 70, + "x": 2030, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "757db44f-7073-486e-8528-708bd2b805ec", + "width": 70, + "x": 1820, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99b03627-dcc0-4d81-a7da-ea133547b728", + "width": 70, + "x": 1890, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8d220bb-981c-4d72-929d-6c8fc23826b1", + "width": 70, + "x": 1750, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c2f43d6-176a-4d66-a50a-76938360776f", + "width": 70, + "x": 1610, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eff35083-0e24-4b52-a0a9-c1ea23d99c38", + "width": 70, + "x": 1680, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3f20d88-0720-4b00-ad5f-fccc89653564", + "width": 70, + "x": 1470, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56d4ef48-db22-4982-beac-f0080b174d2e", + "width": 70, + "x": 1540, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f8dc6a9-b98d-4d56-b273-3ec6264b8f80", + "width": 70, + "x": 1400, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57b86dce-5f73-4ca1-93b6-8d8c80239d50", + "width": 70, + "x": 1260, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf38cfb9-8dee-40bb-a76d-122b6286b475", + "width": 70, + "x": 1330, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b04bc9b9-cb4f-4632-a11c-ca202d10ed0c", + "width": 70, + "x": 1120, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f08e198c-7111-4b7d-9c5f-317256ff187f", + "width": 70, + "x": 1190, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b0fc4606-a63d-4657-a77e-1b58a51db8a0", + "width": 70, + "x": 1050, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28d46a35-dbb5-47c4-a828-89d9973ce77d", + "width": 70, + "x": 910, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbf24c27-1a1d-42a5-8778-ed89d1464e1f", + "width": 70, + "x": 980, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "29821c79-1179-4590-b1e2-3a4414e5baed", + "width": 70, + "x": 770, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c48ff7f2-4315-46a2-bfa5-1780f8c9bd70", + "width": 70, + "x": 840, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ac4d792-388f-41a8-990d-7518e8de5448", + "width": 70, + "x": 700, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e3b2f2c-b8e1-4002-93d9-b18a715cf627", + "width": 70, + "x": 560, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df9ef22a-ff2d-4057-8c01-9a06267d7030", + "width": 70, + "x": 630, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad6b6f2f-75aa-465c-956f-71751c4151c0", + "width": 70, + "x": 420, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3afc854-94b1-4c17-89af-b1fe613b9c11", + "width": 70, + "x": 490, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41740329-469a-4a06-a44d-691b7be807b5", + "width": 70, + "x": 350, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5a1d06b-cc36-4b13-9ec7-e8c8e89b4b2e", + "width": 70, + "x": 210, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85b5b2f7-5dd2-4000-90c6-89738792b208", + "width": 70, + "x": 280, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ab7c020-60c5-48ab-9fbf-9015351e020e", + "width": 70, + "x": 70, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98b54d38-f449-4742-8df6-591b6e3bc649", + "width": 70, + "x": 140, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "136c3de1-dc5a-4b96-85b2-c915013f40c4", + "width": 70, + "x": 0, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77ec8611-ceae-4e03-bbb4-f85c8d24fb4a", + "width": 70, + "x": -140, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98d1041b-497f-43dd-aaef-f809e83c7b4a", + "width": 70, + "x": -70, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78fd1653-ceb1-4c1d-9b71-fc2b0f7ec1af", + "width": 70, + "x": -280, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33136b65-a02e-4f8c-8c71-e71c89a6633f", + "width": 70, + "x": -210, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e93db3a6-7a5c-4452-923c-edd69a7761e7", + "width": 70, + "x": -350, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ed0310f-dec5-4ef4-b04d-52aea874685c", + "width": 70, + "x": -490, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f02967aa-a453-4229-b22c-d6534c8444e6", + "width": 70, + "x": -420, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ff254f8-9e05-4174-92cd-5c181c625c77", + "width": 70, + "x": -630, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3ce8f49-8b3b-4204-b150-9b0195291cd2", + "width": 70, + "x": -560, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1b17b1a-d6c2-4378-b2cd-463346c62059", + "width": 70, + "x": -700, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "650571d4-f621-4fa4-aa44-8cf2c0919f04", + "width": 70, + "x": -840, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1611245c-bc2e-46a3-a079-008772bb7864", + "width": 70, + "x": -770, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d44ee69d-105e-4f21-a317-7e9b0dee0d28", + "width": 70, + "x": -980, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ffbf0d5d-933d-426d-a123-cee94004f5a2", + "width": 70, + "x": -910, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba7ba34e-adb0-44e8-9477-31846ff9aa96", + "width": 70, + "x": -1050, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7b78742f-4c55-484a-987c-98616c943f47", + "width": 70, + "x": -1190, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62ffc145-ef8d-4c79-ac57-63de60c36dbe", + "width": 70, + "x": -1120, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3d618bcd-742f-4d91-9d83-d19d550e3e49", + "width": 70, + "x": -1330, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b23747c-9eba-4e55-a1e1-aff819eb63c8", + "width": 70, + "x": -1260, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da20492f-2dd2-4a51-92ea-96177966a9b2", + "width": 70, + "x": -1330, + "y": -490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06122561-c496-483d-8088-49580c0f56a1", + "width": 70, + "x": -1330, + "y": -350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19bc68cf-02d1-49c0-a830-740c994872b8", + "width": 70, + "x": -1330, + "y": -420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4c74dce-ea3c-4822-bca7-32611a6144da", + "width": 70, + "x": -1400, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9910a106-0125-4601-8a39-e06519e89634", + "width": 70, + "x": -1330, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9062d14-7ba6-4b87-8374-53f68fe934e1", + "width": 70, + "x": -1470, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01e52db8-7762-486e-b7d2-2d9bc130c5f0", + "width": 70, + "x": -1610, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f95fe236-4dd7-4d88-83e2-c6b1c03fc230", + "width": 70, + "x": -1540, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ee84145-539e-4bc2-9fc3-607ff569e551", + "width": 70, + "x": -1750, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0a96cd9-7cd2-4b03-84ec-8a451578092a", + "width": 70, + "x": -1680, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e74b463f-c72a-4d2a-a655-13feb0372e1d", + "width": 70, + "x": -1820, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9defc10c-44b2-4b9f-b962-11b5c45c6248", + "width": 70, + "x": -1960, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e811e998-78a2-4af3-9688-6691c988cb01", + "width": 70, + "x": -1890, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03dbad85-4229-498f-adf4-3ed4c0dbddc8", + "width": 70, + "x": -2100, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fedf77ad-2a78-49e9-b145-793d956f9257", + "width": 70, + "x": -2030, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bebe5ec7-e3ca-4f85-ae58-34115e8152c6", + "width": 70, + "x": -2170, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0db70097-eb8a-4757-a2de-7541bc5be232", + "width": 70, + "x": -2310, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f1d7bf6-0002-4737-86ad-432427ae86a3", + "width": 70, + "x": -2240, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8899f4cd-3ebc-4e12-a671-c8373e8a4203", + "width": 70, + "x": -2450, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aee826ec-8a73-4e21-be60-70786ba88d31", + "width": 70, + "x": -2380, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb3e0c4e-a7f8-4a12-8c08-59ae8d5d89e1", + "width": 70, + "x": -2520, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "039d6300-1223-43fe-942f-8ab7d93dacd2", + "width": 70, + "x": -2660, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7b70ebf-d9d3-4768-83f0-db16853a30e9", + "width": 70, + "x": -2590, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "75fed58e-85d5-47ca-bed1-d6dd79323ba0", + "width": 70, + "x": -2800, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d69e8744-1c90-414e-86d8-2a04c39ef734", + "width": 70, + "x": -2730, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91b0cad5-809f-4833-8784-4da42b5437f7", + "width": 70, + "x": -2870, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82bafb28-25e4-4458-bc5e-a5e29759af5f", + "width": 70, + "x": -3010, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b2711a1-b5d2-49ca-955b-d6958a17750e", + "width": 70, + "x": -2940, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f34c78c0-21dd-465e-b947-edffdee4d4b0", + "width": 70, + "x": -3150, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d38022d8-916c-46a9-b994-187d6e5e39b6", + "width": 70, + "x": -3080, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14933627-d0d8-47de-a1f2-7ce90e1a1391", + "width": 70, + "x": -3220, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f3e85c4c-5b31-4d97-a0b7-480df8cf275e", + "width": 70, + "x": -3290, + "y": -210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f54f34b-2c2c-4a8a-b4e2-af5d66a058ac", + "width": 70, + "x": -3290, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2af84e1-4e75-4c7c-afa5-e3250d07d890", + "width": 70, + "x": -3290, + "y": 1540, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f5bfa69-943b-40dc-abdc-a33f502d923a", + "width": 70, + "x": -3290, + "y": 1400, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "641f4bd7-fe5e-4e78-9bc0-7fc5c28160cc", + "width": 70, + "x": -3290, + "y": 1470, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd43f2a6-749e-4d57-a814-4017e62a8c8e", + "width": 70, + "x": -3290, + "y": 1260, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7ea945e9-9ff4-4870-90cc-f09ce2b7248c", + "width": 70, + "x": -3290, + "y": 1330, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cc6ab81-e4f0-48be-a8be-390e272eb779", + "width": 70, + "x": -3290, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3076899-e1c3-43e8-bd53-875a9a70dc65", + "width": 70, + "x": -3290, + "y": 1190, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08544fd1-0c80-4885-8e76-dba5f2fffeb5", + "width": 70, + "x": -3290, + "y": 1050, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8368e519-ba16-401e-be9c-eb0ceee1a423", + "width": 70, + "x": -3290, + "y": 910, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b53a926-6153-4a5d-9521-359778857fb9", + "width": 70, + "x": -3290, + "y": 980, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef73b9db-284a-453f-93ac-1b6b7a788e2a", + "width": 70, + "x": -3290, + "y": 770, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6ccd18e-9d6a-482c-9804-d4ad31613233", + "width": 70, + "x": -3290, + "y": 840, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a71f5853-ffb1-4cb1-b457-a283189eeaa2", + "width": 70, + "x": -3290, + "y": 700, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "139f6c0f-0131-47d5-bbc5-4a631827b0f0", + "width": 70, + "x": -3290, + "y": 560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa6b92d2-659e-4002-a0be-5b1a9a0a2ee2", + "width": 70, + "x": -3290, + "y": 630, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59da5ecd-d5c7-4509-9ecb-c0702e4b00f7", + "width": 70, + "x": -3290, + "y": 420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d57ccba-493e-48e5-88b9-a8cb7f88aee6", + "width": 70, + "x": -3290, + "y": 490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7828ec8f-f13c-4600-97f0-137d1b60dd0a", + "width": 70, + "x": -3290, + "y": 350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55d5e67d-236a-4f01-a473-e9df030503c6", + "width": 70, + "x": -3290, + "y": 210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e9c5264-0855-4510-a4c2-71aef0a65611", + "width": 70, + "x": -3290, + "y": 280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbac1b55-cd1a-421c-a2cb-8edf13fe245c", + "width": 70, + "x": -3290, + "y": 70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c966e96-637f-4cb5-ab3e-2023d28c61f6", + "width": 70, + "x": -3290, + "y": 140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2122340-5e8b-4e0e-bfbe-1d4e75e08296", + "width": 70, + "x": -3290, + "y": 0, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6f8dbd7-6e16-4498-ae82-235d430d9ee7", + "width": 70, + "x": -3290, + "y": -140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "808253ab-1c68-4d02-ac5f-ed4895b5b4b7", + "width": 70, + "x": -3290, + "y": -70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "502e2d15-39b4-43c4-a1d3-0f0bc01d9bda", + "width": 70, + "x": -3850, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9b701e1-4aee-43e6-8da4-5a6a7a3c7f00", + "width": 70, + "x": -3850, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "695606fe-1db6-4282-98eb-6bb19ea1fa7e", + "width": 70, + "x": -3850, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "461f5c84-d581-4efd-8159-05e66e4d62a9", + "width": 70, + "x": -3850, + "y": 3290, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d02bcdc0-8029-436f-befc-4651ad35ed1b", + "width": 70, + "x": -3850, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3101ba4d-9b0a-4eeb-9c33-6ba99cea6f8b", + "width": 70, + "x": -3850, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d96fd09f-6410-4bf0-873f-1bf766577966", + "width": 70, + "x": -3850, + "y": 3220, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6926772-c12a-4503-8807-9e3ef4997894", + "width": 70, + "x": -3850, + "y": 3080, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "520bfb63-3d3b-4d28-8f17-38c142e594ed", + "width": 70, + "x": -3850, + "y": 2940, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "43a406a1-0a44-4d51-97dc-a31ec8b46650", + "width": 70, + "x": -3850, + "y": 3010, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18d923ce-cc0c-45b7-917b-b84976e470fe", + "width": 70, + "x": -3850, + "y": 2800, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1640d36a-f3e1-401f-8cd0-af50b64b8460", + "width": 70, + "x": -3850, + "y": 2870, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f540b5-9e0e-44ca-b97b-68fb732286d3", + "width": 70, + "x": -3850, + "y": 2730, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "104d8795-f8d8-4314-a6d4-fb903f500948", + "width": 70, + "x": -3850, + "y": 2590, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1e019ef-38d7-4086-bdc8-b5bad935c164", + "width": 70, + "x": -3850, + "y": 2660, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d803da1b-c82d-48c5-9726-ac630b99f8e1", + "width": 70, + "x": -3850, + "y": 2450, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4843dfc7-a004-4c0b-bfdf-828bd7948df3", + "width": 70, + "x": -3850, + "y": 2520, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3667ee87-b3fa-4c4d-97ea-666bb0422d80", + "width": 70, + "x": -3850, + "y": 2380, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a3387ff-07dd-4a4a-9b28-251ad71299f3", + "width": 70, + "x": -3850, + "y": 2240, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e46099d7-9249-4945-bec0-3d602a52397c", + "width": 70, + "x": -3850, + "y": 2310, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a8f6763-bf36-4072-bfef-fcd29cef11c6", + "width": 70, + "x": -3850, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52196847-1b63-4e8b-a51a-cb067fdb6587", + "width": 70, + "x": -3850, + "y": 2170, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc6eaf67-2645-4284-82f8-5875b2044213", + "width": 70, + "x": -3780, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "981a61ec-42b8-4948-a979-570d1b4138c4", + "width": 70, + "x": -3640, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05e0f8b4-9cef-4376-bb44-c62794de2e1f", + "width": 70, + "x": -3710, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e5ba6f9-5e45-447d-9f94-8226ca186213", + "width": 70, + "x": -3290, + "y": 1960, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64369bf7-1b3d-45c6-95dc-1d6a36eea540", + "width": 70, + "x": -3290, + "y": 1820, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31bd6ae9-29f6-4f9d-a028-6b8669707c94", + "width": 70, + "x": -3290, + "y": 1890, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3524fbb1-ec7e-4967-b2b0-3572615b1d30", + "width": 70, + "x": -3290, + "y": 1680, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e8c4be4-e09e-4aee-8e3d-d931b6fe090b", + "width": 70, + "x": -3290, + "y": 1750, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd69541d-ec74-4cc1-b9f5-d5361c707e5d", + "width": 70, + "x": -3290, + "y": 1610, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd0fbc8b-3389-4d59-a0ee-80daaa3321e9", + "width": 70, + "x": -3290, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85269525-53e0-47f9-8095-2a9d0e278a24", + "width": 70, + "x": -3570, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "398ba9c3-3b93-4aca-be59-d6b06429d715", + "width": 70, + "x": -3290, + "y": 2030, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01d0b9e9-41ab-4e56-bc13-063bbdc601b4", + "width": 70, + "x": -3430, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "addba33e-2474-4fdb-99d3-0971b560b6cc", + "width": 70, + "x": -3500, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65327d57-0519-4532-9b40-dce324341caa", + "width": 70, + "x": -3360, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e99730b-5365-45bd-8bba-bda0adb591de", + "width": 70, + "x": -350, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6078403-6860-45f3-885f-8c46e25f5f04", + "width": 70, + "x": -350, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d834c819-7174-4c2e-8519-53e4c41d7ae4", + "width": 70, + "x": -420, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9746178d-0016-4455-9589-a45c4dfeb0ad", + "width": 70, + "x": -350, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a994d75-2502-4ff8-9673-2c5a8c186a80", + "width": 70, + "x": -490, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e780ceb-1c86-47f3-818b-39a949bb900e", + "width": 70, + "x": -630, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e588f9b6-17ba-4dee-9616-9c44aaa4ad07", + "width": 70, + "x": -560, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d3cd763c-3a87-4168-9045-d8104692b29a", + "width": 70, + "x": -770, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0b822e1-1c2f-47be-aeb7-37c72973580f", + "width": 70, + "x": -700, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c608f7fb-2e15-45fa-950e-490bbcdb904d", + "width": 70, + "x": -840, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b1c159a-827a-4993-8827-7fa939453849", + "width": 70, + "x": -980, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4bd34845-b206-439c-87f4-4559b45288fc", + "width": 70, + "x": -910, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "681936f0-0740-4df4-8a8b-ec8b26b43717", + "width": 70, + "x": -1120, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e39835a-c41e-4e9f-9914-63fe5d475191", + "width": 70, + "x": -1050, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c79e4d1c-f29c-4529-bb17-e946a1ca5886", + "width": 70, + "x": -1190, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9dcc459-588e-4d90-a699-0783d330a1a9", + "width": 70, + "x": -1330, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "49a56c43-3abb-4376-b4f0-0eebe197b97f", + "width": 70, + "x": -1260, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6ecbaa4-6fe4-4674-8abc-16810882f095", + "width": 70, + "x": -1470, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ba78387-45f8-4da0-8522-2257f3f7f70b", + "width": 70, + "x": -1400, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c40dbf1-7e7a-49d2-aa1f-6e1fa812bbe4", + "width": 70, + "x": -1540, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b119512-90fe-4e41-9020-9986f46cec15", + "width": 70, + "x": -1680, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "222468dd-48f4-4733-a462-20502de63c7e", + "width": 70, + "x": -1610, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2bff3fe-08fb-4dff-942d-f2701ad5ac73", + "width": 70, + "x": -1820, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55dc1d9a-a750-4aa4-b98a-670c6ee64126", + "width": 70, + "x": -1750, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "350420a3-639f-4254-bed6-c175787bb722", + "width": 70, + "x": -1890, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0c45e33-91ff-4a7b-8b7b-c66b39b83c63", + "width": 70, + "x": -2030, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "232f4fdb-207f-4fff-a634-884cb463dc08", + "width": 70, + "x": -1960, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c6a1c43-374a-4b4b-96b4-518ff6748d78", + "width": 70, + "x": -2170, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68e95d90-bea7-4b2d-b8b5-ed676543a301", + "width": 70, + "x": -2100, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2320340-830f-44e8-bb6b-d770ec9dfd34", + "width": 70, + "x": -2240, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "176f09b6-32b3-4892-a626-99bf335b06c4", + "width": 70, + "x": -2380, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a570c37-c3b2-42d0-b784-5fcc36720b52", + "width": 70, + "x": -2310, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cad8849-c196-4793-8e5b-6ee74a4c3f19", + "width": 70, + "x": -2520, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b633f17-41be-499f-85e2-df4cce4c64b2", + "width": 70, + "x": -2450, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a2e934f-52c8-44c4-b05b-40c8e4b42ece", + "width": 70, + "x": -2590, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c6e3bed-d4c6-4915-a160-e7fa043d2fdc", + "width": 70, + "x": 1610, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ace4863f-fcd7-42e8-8f48-594c7dfc8daa", + "width": 70, + "x": 1680, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec7a4f3f-7f12-41df-b88e-ea24bb690a79", + "width": 70, + "x": 1470, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58359a24-e04a-44c9-9e37-2b73e9ffb749", + "width": 70, + "x": 1540, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f4ff474-9007-4114-9252-153e2b20fee9", + "width": 70, + "x": 1400, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f01b19cb-e6e2-46a0-8ca8-85df499105bb", + "width": 70, + "x": 1260, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01c99f14-1b12-4e1d-99b5-a5a0e3e8d4bd", + "width": 70, + "x": 1330, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83f71c41-ba48-4b83-85c7-c45f1ff390d9", + "width": 70, + "x": 1120, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf36c780-6e3e-4fbc-8976-b34764ccf629", + "width": 70, + "x": 1190, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d02beee8-b3a8-4690-8c8e-020251c71e7b", + "width": 70, + "x": 1050, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "09f4f831-1b0a-47a3-91eb-7bfa4d200e0f", + "width": 70, + "x": 910, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86462c1c-c6b3-4cc8-be86-1e51c1584955", + "width": 70, + "x": 980, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c263d25-3e7f-45b8-bc9e-5583d7fc1f33", + "width": 70, + "x": 770, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79632306-a03c-41d3-b7a9-73ba6e58e09e", + "width": 70, + "x": 840, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9fca6bee-89e2-4750-8a9c-e7d15702eec8", + "width": 70, + "x": 700, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "35613c0c-25b5-4b14-a401-550b69b57c1e", + "width": 70, + "x": 560, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", + "width": 70, + "x": 630, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", + "width": 70, + "x": 420, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", + "width": 70, + "x": 490, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", + "width": 70, + "x": 350, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", + "width": 70, + "x": 210, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", + "width": 70, + "x": 280, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", + "width": 70, + "x": 70, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", + "width": 70, + "x": 140, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", + "width": 70, + "x": 0, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", + "width": 70, + "x": -140, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", + "width": 70, + "x": -70, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", + "width": 70, + "x": -280, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a4a0982-f49f-4bbe-8e28-204e8c88f840", + "width": 70, + "x": -210, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ad82d6e-20fa-442a-adbe-998e513a0c36", + "width": 70, + "x": 1960, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c34886-cde4-463b-b857-6538e1f41a93", + "width": 70, + "x": 1960, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", + "width": 70, + "x": 1960, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", + "width": 70, + "x": 1820, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", + "width": 70, + "x": 1890, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", + "width": 70, + "x": 1750, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", + "width": 70, + "x": 1960, + "y": 3290, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", + "width": 70, + "x": 1960, + "y": 3220, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", + "width": 70, + "x": 1960, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b32bc620-2222-4888-a0ba-b142ceed1637", + "width": 70, + "x": 2030, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", + "width": 70, + "x": 2800, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", + "width": 70, + "x": 2870, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", + "width": 70, + "x": 2660, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", + "width": 70, + "x": 2730, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", + "width": 70, + "x": 2590, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", + "width": 70, + "x": 2450, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", + "width": 70, + "x": 2520, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", + "width": 70, + "x": 2310, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", + "width": 70, + "x": 2380, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", + "width": 70, + "x": 2240, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", + "width": 70, + "x": 2100, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", + "width": 70, + "x": 2170, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", + "width": 70, + "x": 3010, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", + "width": 70, + "x": 3080, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", + "width": 70, + "x": 2940, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", + "width": 70, + "x": 3150, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", + "width": 70, + "x": -2590, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", + "width": 70, + "x": -2590, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", + "width": 70, + "x": -2590, + "y": 3570, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", + "width": 70, + "x": -2590, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", + "width": 70, + "x": -2800, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", + "width": 70, + "x": -2730, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", + "width": 70, + "x": -2660, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", + "width": 70, + "x": -3640, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18caad8d-db60-44a7-97da-14ea41c53569", + "width": 70, + "x": -3850, + "y": 3570, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", + "width": 70, + "x": -3780, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", + "width": 70, + "x": -3710, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3606b58e-ebda-4f4d-a9f0-d71800e92246", + "width": 2380, + "x": -350, + "y": 3500, + "zOrder": 126, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "Water_cover", + "persistentUuid": "54c0db0a-e705-4967-bfd0-c5605536b4c8", + "width": 70, + "x": 1960, + "y": 3150, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "ba7f2656-6d9f-4069-8640-c52fe8cca255", + "width": 1260, + "x": 2030, + "y": 3150, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "Water_cover", + "persistentUuid": "8acc75b9-9d6b-46b2-8b1c-e0855d4af942", + "width": 70, + "x": 3220, + "y": 1120, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", + "width": 280, + "x": -2800, + "y": 3640, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "Water_cover", + "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", + "width": 70, + "x": -2590, + "y": 3360, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3025dfca-2a78-42fe-88ea-f5b5201ce6a3", + "width": 2170, + "x": -2520, + "y": 3360, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", + "width": 210, + "x": 3220, + "y": 1120, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1680, + "layer": "", + "name": "Water_cover", + "persistentUuid": "48dcf900-a30a-4257-af94-b974326e3bf8", + "width": 70, + "x": 3360, + "y": -560, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "25fb9619-1f9c-4f5b-89c7-51ae50950ca4", + "width": 4690, + "x": -1330, + "y": -560, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "Water_cover", + "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", + "width": 70, + "x": -1330, + "y": -490, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "d8d703b7-023b-4239-9846-13360a5bd1cb", + "width": 2030, + "x": -3290, + "y": -280, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "Water_cover", + "persistentUuid": "bea045f7-b983-4e23-a5ac-50bd4c1a44ac", + "width": 70, + "x": -3290, + "y": -210, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "56d52b0e-7060-4707-8279-45068ec4eefc", + "width": 560, + "x": -3850, + "y": 2100, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "Water_cover", + "persistentUuid": "edcb6f9a-2c16-46a5-83ff-a2281a89d842", + "width": 70, + "x": -3850, + "y": 2170, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", + "width": 210, + "x": -3780, + "y": 3640, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", + "width": 70, + "x": -350, + "y": 3430, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", + "width": 70, + "x": 420, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", + "width": 70, + "x": 490, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", + "width": 70, + "x": 560, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "weapon_icons", + "persistentUuid": "e1f10fa7-78d4-4f19-91f7-1e2a6439f087", + "width": 0, + "x": 1170, + "y": 67, + "zOrder": 12643489, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "Health", + "persistentUuid": "51c740a3-2016-4425-8029-6911b124bb8b", + "width": 0, + "x": 0, + "y": 70, + "zOrder": 12643517, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "AmmoText", + "persistentUuid": "c4aa480c-5f33-44be-bff1-b7581f5de51f", + "width": 0, + "x": 0, + "y": 490, + "zOrder": 12643519, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "weaponholding", + "persistentUuid": "13d249b9-06b6-4f5a-b593-79789f2fe2f6", + "width": 0, + "x": 0, + "y": 420, + "zOrder": 12643549, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "mele2", + "persistentUuid": "09afe30b-b74c-417f-a4d0-68548d755fec", + "width": 0, + "x": 70, + "y": 1330, + "zOrder": 12643551, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "You_lose", + "persistentUuid": "f744036a-8f49-422b-a95e-88395ebaf4df", + "width": 0, + "x": 375, + "y": 280, + "zOrder": 12643552, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "door", + "persistentUuid": "99f5ac72-0a60-4827-987e-71768de59cb4", + "width": 140, + "x": -289, + "y": 780, + "zOrder": 12643562, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "2" + }, + { + "name": "Direction", + "type": "string", + "value": "-90" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 193, + "layer": "", + "name": "door", + "persistentUuid": "a78462a8-150c-4ca9-9f1d-e2f13572f6d0", + "width": 121, + "x": -2373, + "y": 1886, + "zOrder": 12643563, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "3" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 168, + "layer": "", + "name": "door", + "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", + "width": 205, + "x": -2448, + "y": 893, + "zOrder": 12643564, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "5" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 127, + "layer": "", + "name": "door", + "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", + "width": 231, + "x": -1262, + "y": 1966, + "zOrder": 12643565, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "4" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 142, + "layer": "", + "name": "door", + "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", + "width": 139, + "x": -1176, + "y": 1325, + "zOrder": 12643566, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "4" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 194, + "layer": "", + "name": "door", + "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", + "width": 124, + "x": 1938, + "y": 1129, + "zOrder": 12643567, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "6" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 1289, + "layer": "Fade", + "name": "Transitions", + "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", + "width": 1994, + "x": 0, + "y": 0, + "zOrder": 12643568, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "ground_1", + "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", + "width": 1680, + "x": -910, + "y": -214, + "zOrder": 4, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c3e7176-be09-41ac-8269-d3ace2f2371d", + "width": 70, + "x": 0, + "y": 3010, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "237d1536-4fd1-4a5c-8a73-1cd4ed60add0", + "width": 70, + "x": 0, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c605b6ec-1edf-495c-8d29-d5c714c3a0ea", + "width": 70, + "x": 1680, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + } + ], + "objects": [ + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "grass", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_01.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_02.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_03.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_04.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "grass_tiled", + "texture": "assets\\foliage\\grass\\tile_01.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Placeholder", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "TopDownMovement", + "type": "TopDownMovementBehavior::TopDownMovementBehavior", + "deceleration": 800, + "acceleration": 400, + "maxSpeed": 200, + "rotateObject": false, + "allowDiagonals": true, + "angleOffset": 0, + "angularMaxSpeed": 500, + "ignoreDefaultControls": true + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.3, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\placeholder.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Player", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_stand.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.3, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_walk_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_walk_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\Single_pistol.png", + "points": [ + { + "name": "shoot", + "x": 58, + "y": 42 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 26 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\Machine_gun_hold.png", + "points": [ + { + "name": "shoot", + "x": 56, + "y": 27 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 21 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_flametrhower.png", + "points": [ + { + "name": "f_t_collision", + "x": 47.5, + "y": 31 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 21 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun4", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_sniper.png", + "points": [ + { + "name": "shoot", + "x": 61, + "y": 28 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 22 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun5-loaded", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", + "points": [ + { + "name": "shoot", + "x": 100, + "y": 45 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 25, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "mele1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_tazer.png", + "points": [ + { + "name": "hitbox", + "x": 45, + "y": 33 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "phone", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 24, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "swim1", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.5, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "swim2", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.5, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "gun5 unloaded", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", + "points": [ + { + "name": "shoot", + "x": 101, + "y": 45 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 22, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "mele2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a1.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a2.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a3.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a4.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a5.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_40.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_37.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_41.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_91.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_62.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_36.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_35.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_93.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_66.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_63.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_64.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_95.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_38.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_68.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "roof_tops", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\rooftop\\roof_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 4.505209922790527, + "y": 1.6666699647903442 + }, + { + "x": 189.5050048828125, + "y": 0 + }, + { + "x": 184.5050048828125, + "y": 378.3330078125 + }, + { + "x": -0.49479201436042786, + "y": 375 + } + ], + [ + { + "x": 194.5050048828125, + "y": 100 + }, + { + "x": 464.5050048828125, + "y": 108.33300018310547 + }, + { + "x": 467.8389892578125, + "y": 271.6669921875 + }, + { + "x": 187.83900451660156, + "y": 276.6669921875 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_10.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "roof_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_14_horizontal.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_14.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_16.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_17.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_18.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_19.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_21.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_22.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_23.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_24.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_25.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sand", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\tile_06.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\tile_05.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\side_walk\\sand.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\dirt.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_14.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_18.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_17.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_19.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_20.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "door", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "Room", + "type": "string", + "value": "-1" + }, + { + "name": "Direction", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\door.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "flame_thrower_fire_collision", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\flame thrower fire collision.png", + "points": [ + { + "name": "CenterBurning", + "x": 50, + "y": 16 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 16 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 16 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "crossair", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crossair_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair010", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair_3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair060", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair008", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Single_pistol_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 11 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 11 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun3", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\flamethrower.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun4", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\sniper.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 10 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 10 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Machine_gun_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 6 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 6 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "tazer_hitbox", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.1429, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun5", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 7 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 7 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mele1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\mele\\tazer.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 4 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 4 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mele2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\weapons\\mele\\knife.png", + "points": [], + "originPoint": { + "name": "origine", + "x": -15, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": -15, + "y": 4.852940082550049 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 0 + }, + { + "x": 14.640199661254883, + "y": 10.606100082397461 + }, + { + "x": 22, + "y": 22 + }, + { + "x": 10.09469985961914, + "y": 15.15149974822998 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Slash1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\weapons\\slash.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31.77560043334961, + "y": 12.954500198364258 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 31.320999145507812, + "y": 12.954500198364258 + }, + "customCollisionMask": [ + [ + { + "x": 15.028800010681152, + "y": 3.6842100620269775 + }, + { + "x": 34.76559829711914, + "y": 0 + }, + { + "x": 58.18669891357422, + "y": 15 + }, + { + "x": 33.976200103759766, + "y": 4.473680019378662 + }, + { + "x": 19.765600204467773, + "y": 6.8421101570129395 + }, + { + "x": 3.9761500358581543, + "y": 18.157899856567383 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "ammo", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "ammo1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo4", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\Rocket_ammo.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "energy", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "ammo1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\energy.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Fences", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "Id", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (21).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26.121299743652344, + "y": 26.470600128173828 + }, + { + "x": 63.474300384521484, + "y": 26.470600128173828 + }, + { + "x": 63.76839828491211, + "y": 37.058799743652344 + }, + { + "x": 26.7096004486084, + "y": 37.647098541259766 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (2).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0.23897099494934082, + "y": 26 + }, + { + "x": 63.76839828491211, + "y": 26 + }, + { + "x": 63.474300384521484, + "y": 37 + }, + { + "x": 0.23897099494934082, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (27).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ], + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 26, + "y": 26 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (1).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (9).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ], + [ + { + "x": 0, + "y": 26 + }, + { + "x": 26, + "y": 26 + }, + { + "x": 26, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (5).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 26 + }, + { + "x": 64, + "y": 26 + }, + { + "x": 64, + "y": 37 + }, + { + "x": 26, + "y": 37 + } + ], + [ + { + "x": 26, + "y": 40 + }, + { + "x": 37, + "y": 40 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (23).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 26, + "y": 37 + } + ], + [ + { + "x": 37, + "y": 26 + }, + { + "x": 64, + "y": 26 + }, + { + "x": 64, + "y": 37 + }, + { + "x": 37, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (22).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road_block", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road_block\\fenceRed.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road_block\\fenceYellow.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "bullet", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "bullet", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "bullet1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", + "points": [ + { + "name": "effects_bullet", + "x": 18.113399505615234, + "y": 2.9629600048065186 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "bullet2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", + "points": [ + { + "name": "effects_bullet", + "x": 18.113399505615234, + "y": 2.9629600048065186 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "bullet3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", + "points": [ + { + "name": "effects_bullet", + "x": 31.95669937133789, + "y": 3.863640069961548 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "AmmoText", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" + } + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "weaponholding", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "weapon: [weapon]", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "weapon: [weapon]", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "156;156;156" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "foliage", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 10, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\treeLarge.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 48, + "y": 52.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 33, + "y": 37.5 + }, + { + "x": 65, + "y": 37.5 + }, + { + "x": 65, + "y": 69.5 + }, + { + "x": 33, + "y": 69.5 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 10, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\treeSmall.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 43.5, + "y": 43.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 33, + "y": 37.5 + }, + { + "x": 65, + "y": 37.5 + }, + { + "x": 65, + "y": 69.5 + }, + { + "x": 33, + "y": 69.5 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\tile_183.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31, + "y": 33.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 32, + "y": 32.5 + }, + "customCollisionMask": [ + [ + { + "x": 20, + "y": 20 + }, + { + "x": 44, + "y": 20 + }, + { + "x": 44, + "y": 44 + }, + { + "x": 20, + "y": 44 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\tile_186.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31, + "y": 32.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 20, + "y": 20 + }, + { + "x": 44, + "y": 20 + }, + { + "x": 44, + "y": 44 + }, + { + "x": 20, + "y": 44 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "house_enter", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\door.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "Water_cover", + "texture": "assets\\water\\water_1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "InOnScreen", + "type": "IsOnScreen::InOnScreen" + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "Water", + "texture": "assets\\water\\water_1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sports_equipments_movable", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Bounce", + "type": "Bounce::Bounce", + "OldX": 0, + "OldY": 0, + "OldForceAngle": 0, + "OldForceLength": 0, + "NormalAngle": 0 + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.2, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\ball\\ball_basket2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 8.78396987915039, + "y": 9.021739959716797 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 17.428600311279297, + "y": 12.857099533081055 + }, + { + "x": 14.571399688720703, + "y": 16.71430015563965 + }, + { + "x": 9.571430206298828, + "y": 17.857099533081055 + }, + { + "x": 3.714289903640747, + "y": 16.428600311279297 + }, + { + "x": 0.5714290142059326, + "y": 12 + }, + { + "x": 0.5714290142059326, + "y": 6.857140064239502 + }, + { + "x": 2.285710096359253, + "y": 2.571429967880249 + }, + { + "x": 6.714290142059326, + "y": 0.7142860293388367 + }, + { + "x": 11, + "y": 0.2857140004634857 + }, + { + "x": 15.285699844360352, + "y": 2.857140064239502 + }, + { + "x": 17.857099533081055, + "y": 6.142859935760498 + } + ] + ] + }, + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\ball\\ball_basket4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 8.78396987915039, + "y": 9.021739959716797 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 17.428600311279297, + "y": 12.857099533081055 + }, + { + "x": 14.571399688720703, + "y": 16.71430015563965 + }, + { + "x": 9.571430206298828, + "y": 17.857099533081055 + }, + { + "x": 3.714289903640747, + "y": 16.428600311279297 + }, + { + "x": 0.5714290142059326, + "y": 12 + }, + { + "x": 0.5714290142059326, + "y": 6.857140064239502 + }, + { + "x": 2.285710096359253, + "y": 2.571429967880249 + }, + { + "x": 6.714290142059326, + "y": 0.7142860293388367 + }, + { + "x": 11, + "y": 0.2857140004634857 + }, + { + "x": 15.285699844360352, + "y": 2.857140064239502 + }, + { + "x": 17.857099533081055, + "y": 6.142859935760498 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sports_equipments", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\post\\element (77).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 30, + "y": 14 + }, + { + "x": 64, + "y": 25 + }, + { + "x": 64, + "y": 40 + }, + { + "x": 31, + "y": 49 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\post\\element (65).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "ground_1", + "texture": "assets\\sport\\ground\\ground_beige.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "ground_elements", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sport\\ground_elements\\element_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": false, + "emitterAngleA": 0, + "emitterAngleB": 20, + "emitterForceMax": 30, + "emitterForceMin": 23, + "flow": 12, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 300000, + "name": "flame_thrower_fire_secondary", + "particleAlpha1": 200, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 168, + "particleBlue2": 8, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 245, + "particleGreen2": 43, + "particleLifeTimeMax": 0.5, + "particleLifeTimeMin": 0.20000000298023224, + "particleRed1": 255, + "particleRed2": 214, + "particleSize1": 40, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": -1, + "textureParticleName": "assets\\particles\\FireParticle.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 5, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": false, + "emitterAngleA": 0, + "emitterAngleB": 20, + "emitterForceMax": 300, + "emitterForceMin": 230, + "flow": 120, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 3000000, + "name": "flame_thrower_fire", + "particleAlpha1": 200, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 168, + "particleBlue2": 8, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 245, + "particleGreen2": 43, + "particleLifeTimeMax": 0.5, + "particleLifeTimeMin": 0.20000000298023224, + "particleRed1": 255, + "particleRed2": 214, + "particleSize1": 40, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": -1, + "textureParticleName": "assets\\particles\\FireParticle.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 5, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "reloading", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": { + "b": 112, + "g": 112, + "r": 112 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": "112;112;112" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Phone", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 1, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_off.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.0625, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_app.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "Wheel_info", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "deco", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\deco\\deco_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "trash_movable", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Bounce", + "type": "Bounce::Bounce", + "OldX": 0, + "OldY": 0, + "OldForceAngle": 0, + "OldForceLength": 0, + "NormalAngle": 0 + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelRed_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelRed_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\oil.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\sandbagBeige.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\sandbagBrown.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 85, + "emitterForceMin": 45, + "flow": 41, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 5, + "name": "brown_leaves_particle", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 45, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 51, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 51, + "particleGreen2": 255, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 1.5, + "particleRed1": 255, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": 5, + "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 3, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 85, + "emitterForceMin": 45, + "flow": 41, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 5, + "name": "green_leaves_particle", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 45, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 51, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 51, + "particleGreen2": 255, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 1.5, + "particleRed1": 255, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": 5, + "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 3, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "bridge", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\bridge\\bridge.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_1", + "texture": "assets\\Road\\road\\tile_35-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road_2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_62.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "concrete_1", + "texture": "assets\\Road\\concrete\\concrete.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "hidden_separate", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "hidden_separate", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\hidden_separate-1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_3", + "texture": "assets\\Road\\road\\tile_37-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "phone_wifi", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 8 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 11 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "phone_battery", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": true, + "italic": false, + "name": "phone_time", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "string": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": { + "b": 255, + "g": 255, + "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": "255;255;255" + } + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_4", + "texture": "assets\\Road\\road\\tile_63-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "beach_sand_1", + "texture": "assets\\Road\\map_edge\\tile_15.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "beach_sand_2", + "texture": "assets\\Road\\map_edge\\tile_19.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "sand_1", + "texture": "assets\\Road\\side_walk\\sand.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "sand_2", + "texture": "assets\\Road\\map_edge\\tile_16.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Pointer", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.0714, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "weapon_icons", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\tazer_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\sniper_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "NewObject", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mouse_point", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "mouse_point", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\mouse_point-1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 300, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 8000, + "name": "bullet_destroy_rocket", + "particleAlpha1": 255, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 5, + "particleAngle2": 100, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 1, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 58, + "particleGreen2": 235, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 0.5, + "particleRed1": 83, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 125, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 200, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 75, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 150, + "name": "bullet_destroy_machine", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 45, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 110, + "name": "bullet_destroy_sniper", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 0.800000011920929, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 25, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 45, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 135, + "name": "bullet_destroy_pistol", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 40, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 35, + "emitterForceMax": 300, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect_rocket", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 50, + "particleGravityY": 50, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 18, + "emitterForceMax": 200, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect_sniper", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 100, + "particleGravityY": 100, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 22, + "emitterForceMax": 200, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 100, + "particleGravityY": 100, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "Health", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "100", + "font": "", + "textAlignment": "", + "characterSize": 64, + "color": { + "b": 0, + "g": 0, + "r": 255 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "100", + "font": "", + "textAlignment": "", + "characterSize": 64, + "color": "255;0;0" + } + }, + { + "assetStoreId": "", + "bold": true, + "italic": false, + "name": "You_lose", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Anchor", + "type": "AnchorBehavior::AnchorBehavior", + "bottomEdgeAnchor": 2, + "leftEdgeAnchor": 1, + "relativeToOriginalWindowSize": true, + "rightEdgeAnchor": 2, + "topEdgeAnchor": 1 + }, + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "string": "WASTED", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "", + "characterSize": 95, + "color": { + "b": 0, + "g": 0, + "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "WASTED", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "", + "characterSize": 95, + "color": "0;0;0" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Thumb", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\thumb_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 15.5, + "y": 129.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 15.5, + "y": 129.5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + } + ], + "objectsFolderStructure": { + "folderName": "__ROOT", + "children": [ + { + "objectName": "grass" + }, + { + "objectName": "grass_tiled" + }, + { + "objectName": "Placeholder" + }, + { + "objectName": "Player" + }, + { + "objectName": "road" + }, + { + "objectName": "roof_tops" + }, + { + "objectName": "sand" + }, + { + "objectName": "door" + }, + { + "objectName": "flame_thrower_fire_collision" + }, + { + "objectName": "crossair" + }, + { + "objectName": "gun1" + }, + { + "objectName": "gun3" + }, + { + "objectName": "gun4" + }, + { + "objectName": "gun2" + }, + { + "objectName": "tazer_hitbox" + }, + { + "objectName": "gun5" + }, + { + "objectName": "mele1" + }, + { + "objectName": "mele2" + }, + { + "objectName": "Slash1" + }, + { + "objectName": "ammo" + }, + { + "objectName": "energy" + }, + { + "objectName": "Fences" + }, + { + "objectName": "road_block" + }, + { + "objectName": "bullet" + }, + { + "objectName": "AmmoText" + }, + { + "objectName": "weaponholding" + }, + { + "objectName": "foliage" + }, + { + "objectName": "house_enter" + }, + { + "objectName": "Water_cover" + }, + { + "objectName": "Water" + }, + { + "objectName": "sports_equipments_movable" + }, + { + "objectName": "sports_equipments" + }, + { + "objectName": "ground_1" + }, + { + "objectName": "ground_elements" + }, + { + "objectName": "flame_thrower_fire_secondary" + }, + { + "objectName": "flame_thrower_fire" + }, + { + "objectName": "reloading" + }, + { + "objectName": "Phone" + }, + { + "objectName": "Wheel_info" + }, + { + "objectName": "deco" + }, + { + "objectName": "trash_movable" + }, + { + "objectName": "brown_leaves_particle" + }, + { + "objectName": "green_leaves_particle" + }, + { + "objectName": "bridge" + }, + { + "objectName": "road_1" + }, + { + "objectName": "road_2" + }, + { + "objectName": "concrete_1" + }, + { + "objectName": "hidden_separate" + }, + { + "objectName": "road_3" + }, + { + "objectName": "phone_wifi" + }, + { + "objectName": "phone_battery" + }, + { + "objectName": "phone_time" + }, + { + "objectName": "road_4" + }, + { + "objectName": "beach_sand_1" + }, + { + "objectName": "beach_sand_2" + }, + { + "objectName": "sand_1" + }, + { + "objectName": "sand_2" + }, + { + "objectName": "Pointer" + }, + { + "objectName": "weapon_icons" + }, + { + "objectName": "NewObject" + }, + { + "objectName": "mouse_point" + }, + { + "objectName": "bullet_destroy_rocket" + }, + { + "objectName": "bullet_destroy_machine" + }, + { + "objectName": "bullet_destroy_sniper" + }, + { + "objectName": "bullet_destroy_pistol" + }, + { + "objectName": "shooting_effect_rocket" + }, + { + "objectName": "shooting_effect_sniper" + }, + { + "objectName": "shooting_effect" + }, + { + "objectName": "Health" + }, + { + "objectName": "You_lose" + }, + { + "objectName": "Thumb" + } + ] + }, + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Note - Important Information", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Links", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Sea" + }, + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Game" + }, + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Sports" + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Rooftops", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "SceneJustResumed" + }, + "parameters": [ + "" + ] + }, + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "niko_movement", + "=", + "1" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "ZOrders", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "grass_tiled", + "=", + "-50" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand", + "=", + "-10" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "Water", + "=", + "-100" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand_2", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand_1", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "beach_sand_2", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "beach_sand_1", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "Water_cover", + "=", + "-100" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "road", + "=", + "-10" + ] + } + ] + } + ], + "parameters": [] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "layers": [ + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "", + "renderingType": "", + "visibility": true, + "cameras": [ + { + "defaultSize": true, + "defaultViewport": true, + "height": 0, + "viewportBottom": 1, + "viewportLeft": 0, + "viewportRight": 1, + "viewportTop": 0, + "width": 0 + }, + { + "defaultSize": true, + "defaultViewport": true, + "height": 0, + "viewportBottom": 1, + "viewportLeft": 0, + "viewportRight": 1, + "viewportTop": 0, + "width": 0 + } + ], + "effects": [ + { + "effectType": "BlackAndWhite", + "name": "BlackAndWhite", + "doubleParameters": { + "opacity": 1 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "ZoomBlur", + "name": "ZoomBlur", + "doubleParameters": { + "centerX": 0.5, + "centerY": 0.5, + "innerRadius": 0, + "padding": 0, + "strength": 0.3 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "LightNight", + "name": "LightNight", + "doubleParameters": { + "opacity": 0.5 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "OldFilm", + "name": "Effect2", + "doubleParameters": { + "animationFrequency": 0, + "noise": 0, + "noiseSize": 0, + "scratch": 0, + "scratchDensity": 0.3, + "scratchWidth": 1, + "sepia": 0, + "vignetting": 0.3, + "vignettingAlpha": 0.5, + "vignettingBlur": 0.3 + }, + "stringParameters": {}, + "booleanParameters": {} + } + ] + }, + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "GUI", + "renderingType": "", + "visibility": true, + "cameras": [], + "effects": [] + }, + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "Fade", + "renderingType": "", + "visibility": false, + "cameras": [], + "effects": [] + } + ], + "behaviorsSharedData": [ + { + "name": "Anchor", + "type": "AnchorBehavior::AnchorBehavior" + }, + { + "name": "Animation", + "type": "AnimatableCapability::AnimatableBehavior" + }, + { + "name": "Bounce", + "type": "Bounce::Bounce" + }, + { + "name": "Effect", + "type": "EffectCapability::EffectBehavior" + }, + { + "name": "FlashTransitionPainter", + "type": "FlashTransitionPainter::FlashTransitionPainter" + }, + { + "name": "Flippable", + "type": "FlippableCapability::FlippableBehavior" + }, + { + "name": "InOnScreen", + "type": "IsOnScreen::InOnScreen" + }, + { + "name": "Opacity", + "type": "OpacityCapability::OpacityBehavior" + }, + { + "name": "Resizable", + "type": "ResizableCapability::ResizableBehavior" + }, + { + "name": "Scale", + "type": "ScalableCapability::ScalableBehavior" + }, + { + "name": "Text", + "type": "TextContainerCapability::TextContainerBehavior" + }, + { + "name": "TopDownMovement", + "type": "TopDownMovementBehavior::TopDownMovementBehavior" + }, + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ] +} \ No newline at end of file diff --git a/src/layouts/city1.json b/src/layouts/city1.json index 0cde9a980..548f16ccb 100644 --- a/src/layouts/city1.json +++ b/src/layouts/city1.json @@ -85078,6 +85078,26 @@ "b": 156, "g": 156, "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" } }, { @@ -85099,6 +85119,26 @@ "b": 156, "g": 156, "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "weapon: [weapon]", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "156;156;156" } }, { @@ -85791,6 +85831,26 @@ "b": 112, "g": 112, "r": 112 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": "112;112;112" } }, { @@ -86018,6 +86078,26 @@ "b": 156, "g": 156, "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" } }, { @@ -86938,6 +87018,26 @@ "b": 255, "g": 255, "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": "255;255;255" } }, { @@ -87706,6 +87806,26 @@ "b": 0, "g": 0, "r": 255 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "100", + "font": "", + "textAlignment": "", + "characterSize": 64, + "color": "255;0;0" } }, { @@ -87741,6 +87861,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "WASTED", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "", + "characterSize": 95, + "color": "0;0;0" } }, { @@ -88317,6 +88457,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, @@ -88376,6 +88517,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, @@ -88392,6 +88534,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, diff --git a/src/layouts/functionsincludes.json b/src/layouts/functionsincludes.json index 86eb3055d..11278010d 100644 --- a/src/layouts/functionsincludes.json +++ b/src/layouts/functionsincludes.json @@ -117,6 +117,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, diff --git a/src/layouts/intro.json b/src/layouts/intro.json index 85a4ee51f..45fff44e4 100644 --- a/src/layouts/intro.json +++ b/src/layouts/intro.json @@ -82,6 +82,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, diff --git a/src/layouts/loading.json b/src/layouts/loading.json index 73c4e366a..ae1a5f8e2 100644 --- a/src/layouts/loading.json +++ b/src/layouts/loading.json @@ -105,6 +105,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Loading...", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "left", + "characterSize": 50, + "color": "0;0;0" } }, { @@ -168,6 +188,26 @@ "b": 255, "g": 255, "r": 255 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "", + "font": "", + "textAlignment": "center", + "characterSize": 16, + "color": "255;255;255" } } } @@ -343,6 +383,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 3, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, diff --git a/src/layouts/maincity.json b/src/layouts/maincity.json new file mode 100644 index 000000000..9a833a998 --- /dev/null +++ b/src/layouts/maincity.json @@ -0,0 +1,62271 @@ +{ + "b": 209, + "disableInputWhenNotFocused": true, + "mangledName": "MainCity", + "name": "MainCity", + "r": 209, + "standardSortMethod": true, + "stopSoundsOnStartup": true, + "title": "", + "v": 209, + "uiSettings": { + "grid": true, + "gridType": "rectangular", + "gridWidth": 70, + "gridHeight": 70, + "gridOffsetX": 0, + "gridOffsetY": 0, + "gridColor": 10401023, + "gridAlpha": 0.8, + "snap": true, + "zoomFactor": 0.17890818668780223, + "windowMask": false + }, + "objectsGroups": [ + { + "name": "bullet_obstacles", + "objects": [ + { + "name": "roof_tops" + }, + { + "name": "Fences" + }, + { + "name": "road_block" + }, + { + "name": "foliage" + } + ] + }, + { + "name": "doors", + "objects": [ + { + "name": "door" + } + ] + }, + { + "name": "North_doors", + "objects": [ + { + "name": "door" + } + ] + }, + { + "name": "West_doors", + "objects": [] + }, + { + "name": "South_doors", + "objects": [] + }, + { + "name": "East_doors", + "objects": [] + }, + { + "name": "Phone_status_bar", + "objects": [ + { + "name": "phone_battery" + }, + { + "name": "phone_wifi" + }, + { + "name": "phone_time" + } + ] + } + ], + "variables": [ + { + "name": "fade", + "type": "string", + "value": "" + }, + { + "name": "walk_in_west", + "type": "string", + "value": "" + }, + { + "name": "walk_in_north", + "type": "string", + "value": "" + }, + { + "name": "separate", + "type": "string", + "value": "" + }, + { + "name": "walk_in_south", + "type": "string", + "value": "" + }, + { + "name": "walk_in_east", + "type": "string", + "value": "" + }, + { + "name": "niko_movement", + "type": "string", + "value": "" + }, + { + "name": "Camera_zoom", + "type": "string", + "value": "" + }, + { + "name": "basketball", + "type": "string", + "value": "" + }, + { + "name": "phone", + "type": "string", + "value": "" + }, + { + "name": "using_phone", + "type": "string", + "value": "" + }, + { + "name": "phone_time", + "type": "string", + "value": "" + }, + { + "name": "godmode", + "type": "boolean", + "value": false + }, + { + "name": "Died_effects_tween", + "type": "string", + "value": "" + } + ], + "instances": [ + { + "angle": 0, + "customSize": true, + "height": 1470, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "89874b45-108b-40c5-8176-fe2d3cd774bb", + "width": 2100, + "x": -3220, + "y": -210, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e205295f-86ec-4087-b2f1-27c28e84cc2f", + "width": 70, + "x": 910, + "y": -350, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "331dfeb2-7067-42cd-9627-5cde9f676cfe", + "width": 70, + "x": 980, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3458d3ed-2c50-4e0c-aafa-69bd6ceac208", + "width": 70, + "x": 1470, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "72ee4429-dcac-4109-8360-a0cc0dfa3864", + "width": 70, + "x": 1330, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2b75ff71-34e2-47d4-9659-1c90b2d09cdc", + "width": 70, + "x": 1260, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a48af02-2b29-416e-abb1-0b139e18f526", + "width": 70, + "x": 1190, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f001a6ea-55d6-4561-b6f3-01081f49e6d3", + "width": 70, + "x": 1120, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bcc1fe54-f3c6-47af-99e0-b0f3deb9f4fb", + "width": 70, + "x": 1050, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "61f686c2-0ee5-466c-8991-4e108cf10d5d", + "width": 70, + "x": 1190, + "y": 70, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dbad18c5-752b-4990-a409-4c8a88a4f148", + "width": 70, + "x": 1400, + "y": -350, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0ae7dce9-24b0-417a-bfd0-bdbd43c7fe7b", + "width": 70, + "x": 1190, + "y": 140, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ce677fd3-5754-4e14-acaa-c993e8821c0b", + "width": 70, + "x": 1470, + "y": -280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0bee8c1-8af3-4735-823e-498a10b59967", + "width": 70, + "x": 1470, + "y": -70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "813fe496-5c06-4e92-90d3-31d5ca6f2c9b", + "width": 70, + "x": 1470, + "y": 0, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4428acc8-b84a-4dd6-b845-9c7243dae5c6", + "width": 70, + "x": 1470, + "y": 70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f312fa1f-0ed2-4afd-b5f8-8a7ae7c7885b", + "width": 70, + "x": 1470, + "y": 140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51434aa0-f71d-466a-9d38-e02c8ff89603", + "width": 70, + "x": 1470, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b5575ee5-42d2-4d32-ae05-719f85479762", + "width": 70, + "x": 1470, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0497c229-2540-4555-98c2-6b0aae1b84c2", + "width": 70, + "x": 1470, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0ebbb67-bf57-4f69-9def-ef338cb3a084", + "width": 70, + "x": 910, + "y": -280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51892884-c52f-45a6-8e64-ad5bbf211766", + "width": 70, + "x": 910, + "y": -70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b4dc1cb5-2e17-4e05-af2f-edafd736a6a8", + "width": 70, + "x": 910, + "y": 0, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a50510b-a642-44c5-a72b-0a0d8e05df4f", + "width": 70, + "x": 910, + "y": 70, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d112be5-8704-41c2-a05f-3c167c840385", + "width": 70, + "x": 910, + "y": 140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "342a06c1-ce6f-47d2-b715-0add176444c2", + "width": 70, + "x": 910, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12addc3f-9d97-4d4c-b765-d0c5168b2c64", + "width": 70, + "x": 910, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7c93b208-5e48-413f-b1cd-a38f444c2a59", + "width": 70, + "x": 910, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1890, + "layer": "", + "name": "road", + "persistentUuid": "56aa2d57-5187-4220-81c5-855f9b75a3c2", + "width": 210, + "x": 1260, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1610, + "layer": "", + "name": "road", + "persistentUuid": "5cd9a1f3-a62f-44b1-93ab-8cf9589fe8e9", + "width": 210, + "x": 980, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7bb1eca6-cdea-4374-94c4-31d4d8e199fa", + "width": 70, + "x": 1190, + "y": -140, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aab861f9-f217-46c1-8349-f5f004c61d0a", + "width": 70, + "x": 1190, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "59b0869d-220a-497c-a469-65452bc0d94e", + "width": 70, + "x": 1190, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c05346f-135d-41c5-9e9b-fa097e7bf395", + "width": 70, + "x": 1190, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "99c8c72f-d543-4995-b892-6ebfe2d64e23", + "width": 70, + "x": 1190, + "y": 0, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "61be1e8b-0e98-4047-ba90-b172b7521575", + "width": 70, + "x": 1190, + "y": -70, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c73bac09-ad68-4ed8-8fd3-495b2ac0e322", + "width": 70, + "x": 1190, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e9ac02d0-fc56-49de-899b-e913994587f9", + "width": 70, + "x": 1190, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ac207d1-fca1-42e1-87d2-aa325e1f35de", + "width": 70, + "x": 1190, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5460babf-6ddb-4fcc-af51-e1859a0a676e", + "width": 70, + "x": 1190, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94ced88f-116a-461b-af34-4de4d1c3daf7", + "width": 70, + "x": 1190, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7fb335b0-fdc2-4e53-ace6-04092b745115", + "width": 70, + "x": 1190, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dadf2e9a-4e72-434b-be2d-f33b64942a9e", + "width": 70, + "x": 1190, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2b5764be-16e7-4a3f-ad20-1e7d7d0176e2", + "width": 70, + "x": 1190, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51b353b0-2a1e-4082-b0c5-9fc453eb230d", + "width": 70, + "x": 1190, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12cb7fc1-54a8-4b69-b4a8-2457eb083097", + "width": 70, + "x": 1190, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a7b16a06-75c7-4ddf-a09c-c1920895f7be", + "width": 70, + "x": 1190, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7e392e54-74d1-4e5a-9f9b-b38690e96e79", + "width": 70, + "x": 1190, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "afee643a-1ab5-49a1-bb0a-4b49fee6a2e2", + "width": 70, + "x": 910, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4481ab1f-9b5e-4af5-8843-aa37c6df0874", + "width": 70, + "x": 1470, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "98d14fe7-58d9-4890-b757-41e6514b2e54", + "width": 70, + "x": 1470, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a3809425-2d00-4d2e-948b-c688fd71dabf", + "width": 70, + "x": 1470, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a48f7eb-5a83-4825-b595-668e4732ff78", + "width": 70, + "x": 1470, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5c8b53eb-0307-4a5c-9096-6720d92ca25c", + "width": 70, + "x": 1470, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a4be6e88-b802-4a1c-86cd-1c1aa365b61b", + "width": 70, + "x": 1470, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1f5a372-9cf1-425c-b014-66997ed87c32", + "width": 70, + "x": 1470, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a0637669-6362-4670-b8d3-adee463fb547", + "width": 70, + "x": 1470, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "18ffebe1-f64f-4c88-bd5a-a0b0245bd563", + "width": 70, + "x": 1470, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a52fb80-ba51-4f0e-9a13-3dcd09587c52", + "width": 70, + "x": 1470, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "90787144-b9b5-4f20-bd84-76f4b3a9b21e", + "width": 70, + "x": 1470, + "y": 1120, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0a8e5905-60a3-4b92-85c0-88eefdceabc3", + "width": 70, + "x": 1470, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "53b57d3a-d0a5-47df-9c95-585c242633e9", + "width": 70, + "x": 910, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "88051e80-2082-4500-88f2-5ad2a8742a17", + "width": 70, + "x": 910, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a49ab43c-0758-4542-9834-e78bcdaec347", + "width": 70, + "x": 910, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a5726351-b154-4c51-9dd9-b83e11be280f", + "width": 70, + "x": 910, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3735ee60-90a3-41f7-b56a-7e75f92f74ec", + "width": 70, + "x": 910, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8bc84d14-1dea-4c81-b7db-637ef6d1aa75", + "width": 70, + "x": 910, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e45da0f5-e88a-4182-a5d3-4e64d59c45f5", + "width": 70, + "x": 910, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa2b7aa1-6935-4f96-814e-dc1c8eccf900", + "width": 70, + "x": 910, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "723a9ea0-25f8-435a-b4b5-7d3b067c76f8", + "width": 70, + "x": 910, + "y": 1190, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1571eca-5169-4743-a6cb-486b250695b0", + "width": 70, + "x": 910, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a713650b-650a-4c21-a79d-50fbf98a5866", + "width": 70, + "x": 910, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fb52888e-d274-400b-a39d-dc045542c916", + "width": 70, + "x": 910, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dc831d83-621e-46ce-bf12-468f87a04db9", + "width": 70, + "x": 420, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "52e794ca-3ed4-43c8-ada9-c4a8d8fe7e0d", + "width": 70, + "x": 770, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ff6c1e4-4424-4a26-a797-6fbf96673fbc", + "width": 70, + "x": 700, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0b49a945-118b-42c1-ae03-231d72e49fc2", + "width": 70, + "x": 630, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3228c3e8-8ebe-4523-baf5-26a48b9d9037", + "width": 70, + "x": 560, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba217884-9514-4a5f-a24b-d4bc89312462", + "width": 70, + "x": 490, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d8c2eff-bbe8-4e2e-bd90-1c7ad70823dd", + "width": 70, + "x": 840, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50ca87f4-9560-424d-8b9a-98f39956d300", + "width": 70, + "x": 1190, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c72f88d3-6e66-4b15-991d-765b1919d832", + "width": 70, + "x": 1190, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bb6110d0-1f02-4af7-ac71-54268d9953b5", + "width": 70, + "x": 1190, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "95fed2b0-5651-4c63-be38-15710b8067bf", + "width": 1260, + "x": -70, + "y": 1330, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a8e9b336-beb8-462b-b769-b5110607eb7e", + "width": 70, + "x": 420, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7729b93d-6de8-4c8c-8596-68f33b9b1e18", + "width": 70, + "x": 490, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "89864813-6fd5-443e-b0a5-67f7a838c5fe", + "width": 70, + "x": 560, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "41c438d9-3743-4ad4-b3be-a4f253526177", + "width": 70, + "x": 630, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aafafec2-24ca-4150-810c-dba910f3cc15", + "width": 70, + "x": 700, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06ce5ecd-98d9-41fa-9910-718a10dc0c2a", + "width": 70, + "x": 770, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "82d6939f-7659-4f8c-b7ef-db382d4c6f95", + "width": 70, + "x": 840, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3754e13e-4a50-4144-9a95-d2084541f319", + "width": 70, + "x": 910, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e0bf5fc-b3d4-4e3e-8ecf-2d02c3bab729", + "width": 70, + "x": 980, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "60f753a3-8e7e-47e4-b096-2543a6bd0e0a", + "width": 70, + "x": 1050, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "9c583553-29f6-4636-9d95-9c49e6f18a27", + "width": 1610, + "x": -420, + "y": 1610, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "c0f70a1e-38bf-4585-96d3-19d95fff9276", + "width": 280, + "x": 1190, + "y": 1610, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2db4f08e-9b75-47dd-b788-dbc731a9946a", + "width": 70, + "x": 1470, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7cd0b85d-35dd-499e-935c-4598f48ee236", + "width": 70, + "x": 1470, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a9f07a89-5fde-4847-a8ba-ce8f7f406e16", + "width": 70, + "x": 1470, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "361ea55b-dce9-41ab-8729-8bc75a6f9e30", + "width": 70, + "x": 1470, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21194579-3a0e-4ea5-999d-377ba86aaf48", + "width": 70, + "x": 1470, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f9391dcb-358e-4b50-9982-4fbb5022f6c7", + "width": 70, + "x": 1470, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8316f750-291c-4f41-a1db-ba1c5074323a", + "width": 70, + "x": 1470, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bc8b1e20-b27e-40b5-becd-5febc31d28df", + "width": 70, + "x": 980, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a29f8d7-cc60-4ae8-8c7a-7446bc892cce", + "width": 70, + "x": 1330, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b85afe82-e8eb-4f11-b01d-442d1c07e625", + "width": 70, + "x": 1260, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4ec21724-2c02-4b00-b4fe-1674042090ae", + "width": 70, + "x": 1190, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa3552da-395b-4d2a-9099-4ad1036d1593", + "width": 70, + "x": 1120, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0df0b6d0-6828-4ca0-9b60-3f63bad8063f", + "width": 70, + "x": 1050, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f0c61d7-a643-4cc1-9013-3e8e5ad4a716", + "width": 70, + "x": 1400, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "50619c13-a520-4448-8198-d5f04d73a763", + "width": 70, + "x": 840, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3f656104-a1b1-4e82-b6dd-47abf3f58b08", + "width": 70, + "x": 770, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4eb368a2-b53f-4343-bea9-5166ea019ee6", + "width": 70, + "x": 700, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d9728ea-982f-416e-9f15-911f5ff4103e", + "width": 70, + "x": 630, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6bf3374b-c967-404c-87f7-06462490c19d", + "width": 70, + "x": 560, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "64903977-f6e9-40ef-b981-b1262d4cc134", + "width": 70, + "x": 910, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff7fc05b-e778-4609-aa61-347d7d54ffa6", + "width": 70, + "x": 1470, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "627416e3-f3ff-4b5e-8d96-6e6ec4396644", + "width": 70, + "x": 1190, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1b1eee91-7d76-4328-b43e-2d1a3095addd", + "width": 70, + "x": 1190, + "y": 1470, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b8c18d-9cf9-4455-bb44-793efee22eb8", + "width": 70, + "x": 1120, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "853adc5b-b12c-45d4-93d3-337642bdc494", + "width": 70, + "x": 420, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e89ef8b2-4449-4311-966d-b8c40b59118a", + "width": 70, + "x": 490, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ddeeeab-4398-4bfc-a76b-f8e21ba599a1", + "width": 70, + "x": 1470, + "y": 1820, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "c38221e3-81b6-4f60-be8c-82142ce7e875", + "width": 1820, + "x": 1540, + "y": -420, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1260, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "5479aea4-68c2-4946-99fb-9f20a0caa108", + "sealed": true, + "width": 3360, + "x": -140, + "y": 1890, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "95180668-fb95-46c4-9273-209a35dfb1ec", + "width": 70, + "x": -70, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fd6561a7-bb3c-4f88-a595-a79a8b7e7ddd", + "width": 70, + "x": 280, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "232c0ed1-ee59-4da4-a263-793ec3698005", + "width": 70, + "x": 210, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "778a40d0-f956-4510-95d8-719789f656d6", + "width": 70, + "x": 140, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d9ac564c-dda7-456a-bdbe-2a189382161e", + "width": 70, + "x": 70, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e124a7bd-2ee3-4380-8d7d-3a05d965f1ba", + "width": 70, + "x": 0, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fee4c2a1-a256-44f6-818a-85194c61b1e4", + "width": 70, + "x": 350, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "868436ff-6f70-483b-af8c-2d74735d1ca4", + "width": 70, + "x": -70, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "62cfc926-37cf-4bee-8f9f-2da1a629383a", + "width": 70, + "x": 0, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf2d87fd-a61c-44d1-b1f6-6d5c85c8131d", + "width": 70, + "x": 70, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb8c669f-adee-4ba3-a6a8-2fc21c70efba", + "width": 70, + "x": 140, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "922ce3fc-0623-4702-8a1c-2a4a4b1cc76f", + "width": 70, + "x": 210, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4e70b326-7391-430e-9bd9-b2540b1f56ca", + "width": 70, + "x": 280, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e67b7312-63cd-4271-a0a9-379bce28f3c1", + "width": 70, + "x": 350, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fea577c1-084f-497e-b505-5106ce1792fc", + "width": 70, + "x": 350, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ebdd4a20-564d-40a3-bb37-82d37a98d7d7", + "width": 70, + "x": 280, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7747f1a-6ec5-428c-af14-88830165c838", + "width": 70, + "x": 210, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c3d08f09-9778-47d5-9c8a-8666b4eb833d", + "width": 70, + "x": 140, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6959ffeb-4deb-49fb-9ad6-0f19851553ed", + "width": 70, + "x": 70, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3a78811b-b230-4fda-a46d-9d1f8aa461f2", + "width": 70, + "x": -70, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "be8e5c06-3cd0-4c45-be59-1ded7ad1b251", + "width": 70, + "x": 0, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "29f80eba-b9f5-4f17-94f1-c5d4cec0ea1a", + "width": 630, + "x": -700, + "y": 1330, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "98043820-6cb7-42c2-836a-24e9b0cd135a", + "width": 70, + "x": -770, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0ab19d47-fe14-47f1-9189-e9810aa4edaf", + "width": 70, + "x": -770, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b5cdf34d-0379-49be-99c3-4c0ca6f1303e", + "width": 70, + "x": -770, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0771f324-ef49-4fc5-b21b-ccdd8648ed01", + "width": 70, + "x": -770, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa9bf7a6-06b3-4d76-8d44-95aaf450eb7e", + "width": 70, + "x": -770, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b8a21b03-eb29-4518-ae84-2ede123e2e8b", + "width": 70, + "x": -770, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e4636d3-60f3-4aec-b5cc-e49e9b64e33f", + "width": 70, + "x": -630, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ff6dc15-52b3-4833-9e77-adf420c0bf8c", + "width": 70, + "x": -280, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb675049-4aec-438d-a9cb-b5c854040052", + "width": 70, + "x": -350, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e087a0d6-7d30-4d3a-b987-43bd3d2e8fc2", + "width": 70, + "x": -420, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8a032712-bc42-401c-ab9c-5c3e4168428b", + "width": 70, + "x": -490, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8af9725a-796f-4dc0-83f7-4707fadc39e8", + "width": 70, + "x": -560, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "216ed95d-047d-4f4f-a050-1efa29fda883", + "width": 70, + "x": -210, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "40431131-375c-4619-b7a5-29cd4ea90065", + "width": 70, + "x": -700, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "17d823e6-e68d-4779-b8fd-a6c9d40aeb95", + "width": 70, + "x": -770, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7dd844b4-9450-44f4-b6e9-217a573602f9", + "width": 70, + "x": -770, + "y": 1820, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b93aed96-b59d-45dc-af61-3850da17709f", + "width": 70, + "x": -770, + "y": 1260, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "051e9025-2a12-4896-af12-254f79b63158", + "width": 70, + "x": -140, + "y": 1260, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bee53c92-1a40-43c1-b13e-0130e4268f07", + "width": 70, + "x": -350, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "39bb9397-c8d9-4a07-9777-eb2f0573c1b4", + "width": 70, + "x": -280, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ce261187-ad23-4b9f-a782-f17924ec0101", + "width": 70, + "x": -210, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "777c089b-b2f7-4f36-bdbb-863fb1c1c3a4", + "width": 70, + "x": -140, + "y": 1540, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "275d55b6-4969-4afd-ae24-46287c3c37ed", + "width": 70, + "x": -490, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 910, + "layer": "", + "name": "road", + "persistentUuid": "55a20fc6-6b42-432e-ba12-3b14f14764f7", + "width": 210, + "x": -700, + "y": 1540, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 630, + "layer": "", + "name": "road", + "persistentUuid": "5a1b1051-9170-403d-b027-8bde1d009411", + "width": 210, + "x": -420, + "y": 1820, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6ad51e50-8eec-4c06-8466-9d1225fe09e3", + "width": 70, + "x": -210, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1532e3de-0f28-41e7-ab7e-273015cbc7cc", + "width": 70, + "x": -210, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "96876b9c-254a-4c61-896e-8bf7cdab15df", + "width": 70, + "x": -210, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6fd6882-b7bf-455a-9b56-c432360715f0", + "width": 70, + "x": -210, + "y": 2100, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1686439-51ab-4ea8-8f29-4a045746a710", + "width": 70, + "x": -210, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff73ff74-49a3-4f80-be46-81d9b3f12fbe", + "width": 70, + "x": -140, + "y": 1820, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8801de14-ab7c-46f7-8e9e-9159b4468d93", + "width": 70, + "x": -210, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "58a96b99-8029-4ac5-8745-95f5f1b0886d", + "width": 70, + "x": -210, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ff68760-0ec7-48f7-b47e-b79f6c576080", + "width": 70, + "x": -210, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3104c0c5-1d38-4c8e-958d-d06378604cb5", + "width": 70, + "x": -210, + "y": 2380, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12ec54f4-f538-4ae9-8216-4d68393def7f", + "width": 70, + "x": -770, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "91eec6f9-91b2-4ef8-b1db-28fcbc39aae5", + "width": 70, + "x": -770, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c6013d2-0c1c-4609-999e-ce67316bcf74", + "width": 70, + "x": -770, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b966a85d-d95b-4569-bbfa-98b650e3002e", + "width": 70, + "x": -770, + "y": 2100, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f00b884-63c0-4f04-ad3e-ac6803fa6f78", + "width": 70, + "x": -770, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f8ddeab-4332-4786-bbe9-9d54ee158839", + "width": 70, + "x": -770, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0663457e-bc18-4c7d-9bf8-b5a9f02ca27d", + "width": 70, + "x": -770, + "y": 2310, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3b6cb242-346c-4b13-867d-476462ede5a4", + "width": 70, + "x": -490, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f811d29b-17ac-425e-a740-c2464fba0fba", + "width": 70, + "x": -490, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "788e2972-b849-4fe5-babe-63e3b6efcb6a", + "width": 70, + "x": -420, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "97747dd2-1959-411e-ab93-54998d3d491c", + "width": 70, + "x": -490, + "y": 1610, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ccc92bca-b535-4e99-a12a-597f208672a1", + "width": 70, + "x": -490, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b9fee541-cbb2-4b1a-98f0-4967947c4a51", + "width": 70, + "x": -490, + "y": 2100, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "46931e40-0b35-44a3-a331-18efd440be2f", + "width": 70, + "x": -490, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ffa231f8-d6e8-456b-97fa-2c34757f7487", + "width": 70, + "x": -490, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e457c6d2-ae03-4d77-b793-dcf4738cf813", + "width": 70, + "x": -490, + "y": 1890, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f5ac0f16-dd22-4c54-9552-c07ae3523fd5", + "width": 70, + "x": -490, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5db42f4b-c075-45cd-9b00-08fa8497c3e2", + "width": 70, + "x": -490, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b84ffc53-edb6-4c9c-a6ff-2be775310416", + "width": 70, + "x": -490, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2074edd9-fc35-4a27-9fd5-14a49bd94ccc", + "width": 70, + "x": -770, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9834de5b-4242-47ed-9467-9c572d92fafe", + "width": 70, + "x": -490, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "07aaa67f-cd00-471f-8220-2b2f7a88e9ec", + "width": 70, + "x": -490, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "06d395a6-e6a4-43ae-9fd4-17020a04af31", + "width": 70, + "x": -490, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0463e6fe-13d6-4965-ae06-a7fad6897f14", + "width": 70, + "x": -1820, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4e8987d5-0d53-49af-a906-799051e6262c", + "width": 70, + "x": -700, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ef5c0d61-e0e0-428d-bb58-dc42af1b63b3", + "width": 70, + "x": -630, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "f445e9bd-3b43-437f-9c1b-8bdde381a8a1", + "width": 280, + "x": -490, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94258e21-4fb5-4e2a-9dbf-4c475e9320d9", + "width": 70, + "x": -210, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "90d40398-2c5f-497f-b25f-0806f5652147", + "width": 70, + "x": -210, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "744be89a-8ef0-4784-8183-435817248b5d", + "width": 70, + "x": -210, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b1197fcc-d27c-4d24-a9e1-4e91236973e8", + "width": 70, + "x": -210, + "y": 2660, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a91fc2d-0c61-4afa-a374-0bde5c54c234", + "width": 70, + "x": -210, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5e32960e-b283-4c57-bb7b-065a7b10fd7e", + "width": 70, + "x": -210, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1771c07c-4711-478d-b8b7-a74d882c7c77", + "width": 70, + "x": -210, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cef814ed-c865-42e1-b8e0-5509d049ebf6", + "width": 70, + "x": -700, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "136ff1e6-ecd6-4a42-b247-bceadbe2186d", + "width": 70, + "x": -350, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4835bac9-c2ee-45cb-b7fe-2b8e6ff43e65", + "width": 70, + "x": -420, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a690939-469f-4747-ada5-7f459f6d171d", + "width": 70, + "x": -490, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a3215ae-1246-4007-8ede-353c8ba3efa3", + "width": 70, + "x": -560, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a6f245e8-aefe-43f5-81b7-c3329f9e2d10", + "width": 70, + "x": -630, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d0f0aa49-75aa-4faa-be2f-c012b84a29c7", + "width": 70, + "x": -280, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9ce287b4-cb86-47ba-8580-8ea3e4164769", + "width": 70, + "x": -1820, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6cbeb7b-ba69-43c2-8702-df495006966d", + "width": 70, + "x": -210, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b9e6f3-fdab-4d4a-8bc4-0d25c8d691e1", + "width": 70, + "x": -490, + "y": 2730, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a8a67064-ddc6-4322-9a7d-0cb0dd6167ed", + "width": 70, + "x": -490, + "y": 2660, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e4fd9104-751d-4a66-8ce5-95664af63a0c", + "width": 70, + "x": -560, + "y": 2730, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "881982c8-7831-48c5-9a55-ca69ef76f362", + "width": 70, + "x": -210, + "y": 3010, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 13 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "896ebce1-1273-4fad-96d2-e4b8fd72cf0a", + "width": 70, + "x": -490, + "y": 2380, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "road", + "persistentUuid": "eaeb09ff-516a-4bc7-b3a6-b87bd5b8af5e", + "width": 210, + "x": -420, + "y": 2450, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "road", + "persistentUuid": "6add235e-fe38-45a4-9bc6-f9279174ab45", + "width": 210, + "x": -700, + "y": 2450, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "afd606f5-4c82-4008-a506-b65d98a2e916", + "width": 210, + "x": -700, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a713c927-1800-43be-8f7f-94e0b47ad3f0", + "width": 70, + "x": -2310, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0fc65313-e137-4ca6-8ec4-580cfc6aafce", + "width": 70, + "x": -1960, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7933e7c6-fed3-4e89-88ba-af36f518c828", + "width": 70, + "x": -2030, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8eae8049-3895-4775-a42b-dff7305c2158", + "width": 70, + "x": -2100, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f681a437-d60b-4032-b86b-0a956f617901", + "width": 70, + "x": -2170, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4b4c2d54-2a9e-496e-a4df-da7789c49a04", + "width": 70, + "x": -2240, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "998dbaba-8d38-4930-8857-ca6e4975220c", + "width": 70, + "x": -1890, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcdd49b3-d041-4ec6-95af-778f934bb145", + "width": 70, + "x": -2310, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2446120-a6c3-4940-ba2d-b7b9411da356", + "width": 70, + "x": -2240, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9856266a-9d82-43ce-b178-5890282202cd", + "width": 70, + "x": -2170, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df641598-7464-4ef6-9cb9-df0b5f411ce5", + "width": 70, + "x": -2100, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6533e059-15d8-465e-86b7-6295a98a31f2", + "width": 70, + "x": -2030, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "94b5e6ec-b607-4290-8fce-480223ae737d", + "width": 70, + "x": -1960, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2e8596f3-38cd-4399-9df5-5a780a235155", + "width": 70, + "x": -1890, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5258c531-d0f7-4259-bffd-72763f3630a5", + "width": 70, + "x": -1890, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4fdbbb03-652c-43eb-8fad-ef45b755c401", + "width": 70, + "x": -1960, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6b3db8e-952f-40e1-8a3d-8f8535bb90cd", + "width": 70, + "x": -2030, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3d4cfe91-95c1-4042-8f38-7e1529c8611e", + "width": 70, + "x": -2100, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "abdf8277-e474-4b1f-897d-847470c56aaa", + "width": 70, + "x": -2170, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a45675b9-7a62-4386-a36c-877610610101", + "width": 70, + "x": -2310, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "16cb8eab-14ab-4168-8bb6-d3d714338c80", + "width": 70, + "x": -2240, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df7f760b-2194-4ac9-b4fa-48ad3b861e45", + "width": 70, + "x": -2450, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba9e48e7-c992-4add-9239-5fb3a1c62ded", + "width": 70, + "x": -2520, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3bb9c37a-9932-4352-8908-af75e48218a8", + "width": 70, + "x": -2590, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fadf881c-2b69-43ba-8f30-cb72a3b2d67a", + "width": 70, + "x": -2660, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "01b5d62e-621a-4ca1-9ca3-9231f4191fd6", + "width": 70, + "x": -2730, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d09b97d5-cee9-42e8-ab81-03ab45d09707", + "width": 70, + "x": -2380, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3ebe1223-b7f0-4689-bdaa-7f2d4c6891c8", + "width": 70, + "x": -2800, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f57c3e6e-708b-4c15-aed1-1a5d5ef59a31", + "width": 70, + "x": -2730, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3d9987e9-8849-43b6-a8de-039840294a71", + "width": 70, + "x": -2660, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d8e97723-8dd8-46c5-be5f-958df14d91b2", + "width": 70, + "x": -2590, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fde95ed8-15ba-40e8-9d4a-5099e0c4b4f7", + "width": 70, + "x": -2520, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fffb483b-72ba-46f4-88f7-90f175867e40", + "width": 70, + "x": -2450, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "43a830f1-848d-4ca4-9dd3-b172efd6f9e3", + "width": 70, + "x": -2380, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "091c239b-1d9d-4ae9-9f62-118d0bc8d3cd", + "width": 70, + "x": -2380, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0038cd0b-02fd-40df-ad8f-7158e15f931a", + "width": 70, + "x": -2450, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec492778-028a-4347-a5ee-5114133c6cc2", + "width": 70, + "x": -2520, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d35dcb54-5ddb-4613-9d64-008753b4e272", + "width": 70, + "x": -2590, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a113c27-f8fc-4f2f-a1b4-92fd38261f4c", + "width": 70, + "x": -2660, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "08d757f0-98d6-4484-a949-e6740b668a1e", + "width": 70, + "x": -2800, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f63f89e1-1629-444b-9867-eed13d4993b3", + "width": 70, + "x": -2730, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "6ec2eeec-eee9-4dad-91af-f53a2d31a03d", + "width": 2730, + "x": -3430, + "y": 2520, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a99da47-3c26-439f-a31f-143da8dcf481", + "width": 70, + "x": -3500, + "y": 2520, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "49d95f7d-03ac-4391-bb65-7ecbc2c1dc06", + "width": 70, + "x": -3500, + "y": 2590, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c8b50b47-d4cc-43b9-8733-5fc317e7c8b3", + "width": 70, + "x": -3500, + "y": 2660, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7a950107-052c-4a96-9448-5ca84e144d53", + "width": 70, + "x": -3500, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c7d2df45-bb61-41d5-bd43-7b6d04096ebf", + "width": 70, + "x": -3500, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5170df12-811a-4a8f-8eda-ee0a493f4ac4", + "width": 70, + "x": -3500, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cca58828-3227-45d5-b1c7-6acc0a1ea6da", + "width": 70, + "x": -3360, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "76116947-4495-4dd8-8b9c-b28c64b71237", + "width": 70, + "x": -3010, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c65142f3-b882-4740-9827-1e9efccdb309", + "width": 70, + "x": -3080, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f91a755a-c8c1-4b11-a266-97a209cd7c19", + "width": 70, + "x": -3150, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d226625b-8e6c-4535-8f39-66bfccc8ac77", + "width": 70, + "x": -3220, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d925f73-a59e-44b8-8806-799d3bbf7339", + "width": 70, + "x": -3290, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d2ccd693-dbbd-479f-879b-e20dab1bb008", + "width": 70, + "x": -3430, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ac6e66a-21d0-48f3-bb15-827bc06ac3c6", + "width": 70, + "x": -3500, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6233cf1a-0961-47dc-93ec-b58d235fd02e", + "width": 70, + "x": -3500, + "y": 3010, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "bd5c3004-cfef-422a-a820-235632f19f4e", + "width": 70, + "x": -3500, + "y": 2450, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1627fd1a-1557-488a-aeeb-9b33873f470f", + "width": 70, + "x": -3080, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44b4d3f3-dc73-424e-ad8f-252447ebc0a6", + "width": 70, + "x": -3010, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d04fc690-752a-4a4a-8916-91bf27f671e9", + "width": 70, + "x": -2940, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "09d9e9b7-5ed8-4137-a12c-bbcd015efd4c", + "width": 70, + "x": -2870, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0498ab24-071b-4de2-94da-8d3f92b60d53", + "width": 70, + "x": -3220, + "y": 2730, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 11 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c7b7b072-afaa-4e5a-b8c4-c4be723493f3", + "width": 70, + "x": -2870, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2feb41d-394c-4c45-87b0-b19e822f7f0a", + "width": 70, + "x": -2940, + "y": 3010, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fb9d2ddd-e0c3-4e01-8e14-195b1aa8ee33", + "width": 70, + "x": -3220, + "y": 2870, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7f05395d-1702-47b6-a4b0-8aeaf0d6f0d0", + "width": 70, + "x": -3220, + "y": 2940, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "86b7bc43-aba6-4512-b3ae-c2b34627b9d3", + "width": 70, + "x": -3150, + "y": 2730, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cf6b48b1-981a-4018-b6d2-3bcc4309116a", + "width": 70, + "x": -3220, + "y": 2800, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ed94b033-5488-47a7-8675-5c100adf58cf", + "width": 70, + "x": -3220, + "y": 3010, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "af5e4875-09cd-45ad-9b6d-e7649369c2cc", + "width": 70, + "x": -770, + "y": 2380, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6f3f9c01-7a7a-4b31-93f2-2118d458b31d", + "width": 70, + "x": -1260, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1114b81e-a1bd-4fe4-86fb-6d0ee45f05c6", + "width": 70, + "x": -910, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa616ab8-ed04-408a-a800-b230e2ade93b", + "width": 70, + "x": -980, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "67897195-3df8-4cf5-b05b-0958fc3e04f1", + "width": 70, + "x": -1050, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f2261fa1-a9be-4965-9be8-3e0f2c957db7", + "width": 70, + "x": -1120, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6f1f6305-c23b-4900-8b37-cabe10c47744", + "width": 70, + "x": -1190, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3247a687-cac0-43ff-b663-dcbafbc1274b", + "width": 70, + "x": -840, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b079d149-bab5-42eb-a216-2420299f6737", + "width": 70, + "x": -1400, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c8ae4d56-be98-409b-b1a8-b8fa5a22763d", + "width": 70, + "x": -1470, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6a519cdf-cf3f-4729-b9a5-b758eda137e1", + "width": 70, + "x": -1540, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cfdaba9a-f6c9-44c6-858e-b79e09520b57", + "width": 70, + "x": -1610, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9e6cf84c-1b9b-47de-9803-3c11fdf99535", + "width": 70, + "x": -1680, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ecd94a1-5b6b-410e-a41f-f8f60571d402", + "width": 70, + "x": -1330, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d586de31-cfcd-4ec4-b7aa-a7fb39bdd09e", + "width": 70, + "x": -1820, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d3846b54-0088-49f6-a028-970f77ea6cf5", + "width": 70, + "x": -1750, + "y": 2450, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5ac1d607-ed21-469d-8478-d0a3415ac136", + "width": 70, + "x": -770, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7e278afe-5380-4ba9-a528-2389d48a7d14", + "width": 70, + "x": -840, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6b0ddef9-489a-4c1b-8b23-97cefd47a131", + "width": 70, + "x": -910, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "62752b83-abb5-430a-aa0d-02689d31dc3b", + "width": 70, + "x": -980, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "77f502a3-f213-4730-87c1-a5d414e1af9a", + "width": 70, + "x": -1050, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e56b821b-d45d-496c-8935-28a2fa7ab041", + "width": 70, + "x": -1190, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3a6662fb-5542-4eac-bc78-a5e95a63bb6e", + "width": 70, + "x": -1120, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6e967c83-7751-43f6-915c-e5626dc251c0", + "width": 70, + "x": -1260, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f964670b-b9a7-4dac-93a2-0f513c8a30de", + "width": 70, + "x": -1330, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "822c4489-d4bd-4ee3-b60c-a167204e4a14", + "width": 70, + "x": -1400, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f4722a37-5dc7-4eb7-9a17-77e7d4047397", + "width": 70, + "x": -1470, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ef795edd-0d92-4410-826b-ad93141b51ef", + "width": 70, + "x": -1540, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2ba1ca45-26ff-4ac5-bd3c-aca07e994ddd", + "width": 70, + "x": -1680, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd9d9595-af24-4f3f-b670-809bf102e6f0", + "width": 70, + "x": -1610, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec2ea0a7-745b-4e1e-a52d-c52f3e4068b6", + "width": 70, + "x": -1750, + "y": 3010, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "12dbde87-dffa-4509-8dc3-ffac15099dc5", + "width": 70, + "x": -840, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "434bfc15-7200-48ba-9b44-de6ad15d6c69", + "width": 70, + "x": -1330, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6036f58-f09c-455d-b586-401343c709ee", + "width": 70, + "x": -1260, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fc0df6d1-0259-41b3-aef8-469c8f855518", + "width": 70, + "x": -1190, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "454def33-5c89-4e5f-9853-ae67ff4c9d3d", + "width": 70, + "x": -1120, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2bb56b78-6897-47ee-9ce0-2eefeb29f366", + "width": 70, + "x": -1050, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b083b8e7-04ef-40f4-8683-39a154b4727c", + "width": 70, + "x": -980, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1581ca9f-7b74-4985-8721-70734e890737", + "width": 70, + "x": -910, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa498766-fc0f-4916-b918-9eeb57533717", + "width": 70, + "x": -1750, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2a892398-4fa4-4f3d-96b2-b10f4492e420", + "width": 70, + "x": -1680, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ec81180-7790-45cf-b117-6aee28c1c6d4", + "width": 70, + "x": -1610, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8a198063-17d0-488e-b910-1f40a2672d32", + "width": 70, + "x": -1540, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "cb5faea0-53f4-4e90-b4ef-65770190aeed", + "width": 70, + "x": -1470, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd22cd3d-12c6-491b-a359-7505b5894c92", + "width": 70, + "x": -1400, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a07bc035-b599-4de0-bd5d-ecc941b14f65", + "width": 70, + "x": -770, + "y": 2730, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "road", + "persistentUuid": "42efb586-0eff-4c80-99ac-7df98c863057", + "width": 2450, + "x": -3150, + "y": 2800, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 6090, + "layer": "", + "name": "road", + "persistentUuid": "6616df46-cd1e-4887-916d-a5a5d92f92ef", + "width": 210, + "x": -3430, + "y": 2730, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 5810, + "layer": "", + "name": "road", + "persistentUuid": "02fcde55-1925-4b3c-a67f-fff1b26eb9da", + "width": 210, + "x": -3150, + "y": 3010, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1190, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "add3a6ce-9d81-46cf-8a4d-4feac8e20c91", + "width": 2450, + "x": -3220, + "y": 1260, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "69ecff2e-66cb-4ffa-bb6a-0582e8724634", + "width": 70, + "x": -2940, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a3cfa36f-c63d-47ea-9551-26b9ed091369", + "width": 70, + "x": -2940, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c309e593-0b4d-4931-bca3-b96d9653dec5", + "width": 70, + "x": -2940, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "11655b6e-da6b-409e-a766-d45ebf869d00", + "width": 70, + "x": -2940, + "y": 3290, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec25e2d8-92ef-4fb7-98a5-792f045c1014", + "width": 70, + "x": -2940, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "411e8d4b-3d9c-423f-a563-efc67b27d4f1", + "width": 70, + "x": -2940, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d41626c6-0480-4b48-8641-7193f02d9833", + "width": 70, + "x": -2940, + "y": 3500, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "31b55d93-52d6-4943-b893-510f2b88a2d1", + "width": 70, + "x": -2940, + "y": 3570, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9805138d-3f34-4a83-9606-b82b806d032c", + "width": 70, + "x": -3500, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "79c3d8dd-2bb5-440f-bd25-0adf304f1fe2", + "width": 70, + "x": -3500, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9dbcbce5-7bfc-4189-9e2b-c2ad42dab95d", + "width": 70, + "x": -3500, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f981b8a-02d8-456b-bce1-0bb36f942934", + "width": 70, + "x": -3500, + "y": 3290, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ff70d8ef-7a39-463a-a56c-b61710a77de5", + "width": 70, + "x": -3500, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "811e9cc9-f182-4334-92f5-5ab053ff0075", + "width": 70, + "x": -3500, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d5a889a0-9e61-44f3-bcf1-d181409330ec", + "width": 70, + "x": -3500, + "y": 3500, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a05bfb80-3c85-4ff5-9683-5c53bed905e9", + "width": 70, + "x": -3220, + "y": 3360, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7fe95b3f-ae1b-4fcd-8282-d6b098d26de2", + "width": 70, + "x": -3220, + "y": 3290, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6bc33b3f-3124-48b6-b2b6-cb7203f5f587", + "width": 70, + "x": -3220, + "y": 3220, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3130004e-d13f-46b4-b286-280b27e4fb27", + "width": 70, + "x": -3220, + "y": 3150, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ad346841-1e0f-414c-8214-c0230f823521", + "width": 70, + "x": -3220, + "y": 3080, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4b5553bf-ab23-480e-80ea-f6e751a471be", + "width": 70, + "x": -3220, + "y": 3500, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c5c3bd7c-9aa7-4973-81f7-6cb986731e45", + "width": 70, + "x": -3220, + "y": 3430, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "066f18fd-cd4f-4f49-a832-689d80f326ac", + "width": 70, + "x": -3220, + "y": 3570, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b185d489-b531-4c15-b461-c92fdd5d3a3d", + "width": 70, + "x": -3500, + "y": 3570, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "17f71d6f-7c57-4ec2-b4a2-e27a9a2b07ea", + "width": 2730, + "x": -2870, + "y": 3080, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1050, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "453a383b-5201-482d-8559-8e0d8cbc0ff4", + "width": 140, + "x": -3780, + "y": 2590, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": false, + "height": 0, + "layer": "", + "name": "Placeholder", + "persistentUuid": "836a213c-8cdb-4941-9c4e-4bd98ce3f7a2", + "width": 0, + "x": -474, + "y": 1561, + "zOrder": 9, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "Niko", + "persistentUuid": "70a36631-69a6-4c00-a464-a6e16d80fb3e", + "width": 0, + "x": -108, + "y": 1519, + "zOrder": 10, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc0a3f4f-86be-4b99-89c6-67e6e7e16fd2", + "width": 70, + "x": 490, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c23a62f-0fd8-4513-a3be-388c64c64a4d", + "width": 70, + "x": 420, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "900ce204-40ea-49c1-adf4-b67698284354", + "width": 70, + "x": 490, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7afa1c88-2684-4a3d-9c44-ac2eaea4fcff", + "width": 70, + "x": 420, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "door", + "persistentUuid": "0cb1981b-95d9-487d-aa05-ed08b983e17a", + "width": 140, + "x": 420, + "y": 780, + "zOrder": 1203, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "1" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "4e812b69-5a12-4e22-ba1c-a240bebf9e91", + "width": 140, + "x": -560, + "y": 630, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "f96e4766-b631-4e90-ab0e-4f80ce881d3c", + "width": 140, + "x": -700, + "y": 630, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a73a07c-8c3e-410d-b7ed-654e7a743421", + "width": 70, + "x": -280, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34ec7312-1e01-466e-934d-6e6681a1bfa8", + "width": 70, + "x": -210, + "y": 980, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5312fa9-8f99-4a73-b164-c7146adc157c", + "width": 70, + "x": -280, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a7122a8-a2ef-407f-bc64-8794b1693e16", + "width": 70, + "x": -210, + "y": 1050, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun1", + "persistentUuid": "5a448040-cb9c-49d6-8597-63790fc6f3fb", + "width": 0, + "x": 98, + "y": 1194, + "zOrder": 121, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d7890f6-98cf-4044-a1c8-262c69cb6d46", + "width": 70, + "x": -840, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "42f16f90-784c-422a-aa77-616fdcc4561d", + "width": 70, + "x": -840, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1e2780d-029b-4ec0-9ccb-4fe3dcac0a85", + "width": 70, + "x": -910, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58eced0f-c0fb-421c-98fc-ea739b877fb2", + "width": 70, + "x": -910, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 140, + "layer": "", + "name": "roof_tops", + "persistentUuid": "7f356254-bc0d-47bb-8f49-970e4d2333ef", + "width": 140, + "x": 420, + "y": 700, + "zOrder": 8, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 140, + "layer": "", + "name": "roof_tops", + "persistentUuid": "24c3b475-9d85-487a-8528-e8c0ba748dc5", + "width": 140, + "x": 420, + "y": 840, + "zOrder": 8, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0ca0597-6b2b-487f-8211-f84a6503286f", + "width": 70, + "x": -840, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d5f124b0-9028-454d-8772-94025a1e26d4", + "width": 70, + "x": -840, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07a0c7de-7be1-4a6f-9c88-98f341bcc48d", + "width": 70, + "x": -910, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76953f35-80de-4db0-8fcc-c8dcd7059986", + "width": 70, + "x": -910, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "02cb8fdd-466a-4a8b-ba79-590d3bf4c75d", + "width": 0, + "x": -70, + "y": 1330, + "zOrder": 108, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "3a7b864c-ab03-4d43-aefa-f7eae6251dc8", + "width": 0, + "x": -140, + "y": 1400, + "zOrder": 109, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "385a36c9-79bb-4c01-b99b-1364069755d3", + "width": 0, + "x": -70, + "y": 1400, + "zOrder": 110, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "AmmoText", + "persistentUuid": "9f827c04-49af-448b-8657-4d6e8925c4ed", + "width": 0, + "x": -5110, + "y": -5530, + "zOrder": 111, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun2", + "persistentUuid": "91c0c667-36c2-4c98-acb1-ff4aebfefcc9", + "width": 0, + "x": 70, + "y": 1470, + "zOrder": 112, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62373967-62cf-4da1-baf4-5e92a34b9420", + "width": 70, + "x": 770, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d46d107-5e7e-422e-a798-3bb19b5cacfe", + "width": 70, + "x": 840, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daa3f67c-0180-4c47-9a18-07a050a92e54", + "width": 70, + "x": 770, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98211fae-a6eb-4cd6-aa90-cb971279d233", + "width": 70, + "x": 840, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37189e5a-7e49-48b2-8af3-6b844a3a41fc", + "width": 70, + "x": 770, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf6eef5b-7a01-4297-ac82-1ce7737cdcaf", + "width": 70, + "x": 840, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2efd9f4-f2c3-49b6-8514-5e78d7676ee4", + "width": 70, + "x": 770, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d9dae04-fc43-4e29-a299-4dbd74dd8e10", + "width": 70, + "x": 840, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e3e5b51-186c-4f59-bb0f-856036853794", + "width": 70, + "x": 770, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92eee268-6855-47ff-8bef-b6af7ee4e984", + "width": 70, + "x": 840, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acdaa451-18bf-43e3-bbdb-42e3a5e74502", + "width": 70, + "x": 770, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "baa08f05-7dfe-4528-af57-92c02af4025f", + "width": 70, + "x": 840, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c3c5ff0-8074-4e58-83f2-bcfb372eedee", + "width": 70, + "x": 770, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b84e1ca-ed4d-49ee-9e80-fdcf90618302", + "width": 70, + "x": 840, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8effbaa0-df8a-41ec-97a4-826fb0ca0b55", + "width": 70, + "x": 770, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a064ad0-bede-4e64-8cde-05509d99a995", + "width": 70, + "x": 840, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5aef02c-0187-49af-8dda-e579daa35f76", + "width": 70, + "x": 770, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "222cbc94-01eb-43b8-8988-8fd129af0247", + "width": 70, + "x": 840, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b1219cf-51c7-417d-add2-93138e6d5007", + "width": 70, + "x": 770, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2f25ee7-a7e1-4d72-8b0f-83c0f4e703fb", + "width": 70, + "x": 840, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9845431e-1850-4754-b8a2-24a00eba6fc2", + "width": 70, + "x": 770, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0491d7da-e5f3-4d56-923a-a33277441f75", + "width": 70, + "x": 840, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bee2c4d-eaff-46ec-accd-da6aebf0f71c", + "width": 70, + "x": 770, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f4360a-ead2-4b11-8374-ea1b60736df9", + "width": 70, + "x": 840, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f939b493-fa86-45f2-8f40-a8d972780b8b", + "width": 70, + "x": 770, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cb2cc76-1267-4364-a11e-49fd2b817a8e", + "width": 70, + "x": 840, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8a0037b-e238-47dd-a1d9-45e66dc5a14b", + "width": 70, + "x": 770, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f92c8b0-ca3e-498d-8f50-b4dc66546792", + "width": 70, + "x": 840, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a4b6604-34c6-41fa-8563-4346b0087be9", + "width": 70, + "x": 770, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45c03fd9-7247-42ed-9646-e3576936b3a5", + "width": 70, + "x": 840, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eda4d524-0a6d-4f55-8ec4-47d844d90354", + "width": 70, + "x": 770, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7429e691-8d6d-4903-8b91-fce77604397c", + "width": 70, + "x": 840, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ac226c4-f2b2-4ca6-bf3d-c363b9efaf7f", + "width": 70, + "x": 770, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "081588bb-b584-4d2c-8574-d65ae7c5ffd0", + "width": 70, + "x": 840, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ff07f61-58a2-4212-bb24-2fc855bb5589", + "width": 70, + "x": 770, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4deb0f24-1c96-4ab6-9280-0e9c510c8aa2", + "width": 70, + "x": 840, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f1f7556-9026-476c-9025-ccce0ac980d8", + "width": 70, + "x": 770, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db417fcb-5290-4bb3-aaef-3103dc5db60c", + "width": 70, + "x": 840, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1215201c-70c0-4c1a-a6b5-a4e3838b9455", + "width": 70, + "x": 770, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed03061d-2168-449c-b475-fc50ed229a2a", + "width": 70, + "x": 840, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fb6597c-58f6-4f25-9919-ec25bd1a06f5", + "width": 70, + "x": 770, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97eb8672-1dbc-4a8c-98d8-d69c2936658d", + "width": 70, + "x": 840, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb03b67f-46e3-4714-8977-1e0af3c5cb99", + "width": 70, + "x": 1540, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13d0074-1cf3-4286-85d0-e639364b9742", + "width": 70, + "x": 1610, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5ee4abf-813e-41db-afbd-6f2099242f12", + "width": 70, + "x": 1540, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05e4a20d-0dd9-4012-8be0-40d6f934431b", + "width": 70, + "x": 1610, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56e66b8d-ac57-4619-8cb6-cb685003195e", + "width": 70, + "x": 1540, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "caac02e5-5f9d-47fb-9811-737191c03424", + "width": 70, + "x": 1610, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c385d12b-7b17-4091-b1a0-3db522bc5914", + "width": 70, + "x": 1540, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb302634-109e-46f3-af16-5bf3b656cfea", + "width": 70, + "x": 1610, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a93cec83-a555-4591-8f55-23310234dd01", + "width": 70, + "x": 1540, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbb337f7-12b2-4e2c-964b-c9449c83c605", + "width": 70, + "x": 1610, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05dfbcf6-3674-4dc5-9458-834d02f59ab0", + "width": 70, + "x": 1540, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d505524e-60dc-4b1d-a669-18c4a0949f6b", + "width": 70, + "x": 1610, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cb7a5dd-c1dd-4ce2-ba62-a2524ea344fd", + "width": 70, + "x": 1540, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b0c46b9-f2e7-4df7-8b31-bd96958b8f42", + "width": 70, + "x": 1610, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8b73dcd-97f3-4ac2-9062-45857afa761c", + "width": 70, + "x": 1540, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36e48d84-23b6-49b0-8e00-94326f8507e6", + "width": 70, + "x": 1610, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16176720-23b6-46ae-98c7-d1a5fcd57af3", + "width": 70, + "x": 1540, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe9068f6-73db-4adf-865a-8a872c7b505d", + "width": 70, + "x": 1610, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ebfde812-59fd-4aed-bdc5-1a082b37ae9e", + "width": 70, + "x": 1540, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec75c0e5-c308-4610-81f0-e120dadccdd2", + "width": 70, + "x": 1610, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12cb9114-c4bd-4f85-94fe-127778cf922c", + "width": 70, + "x": 1540, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea5e55db-6629-49fd-9d03-a9c82c8ba945", + "width": 70, + "x": 1610, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d351de1-ee57-47f8-b30d-98b6ce115446", + "width": 70, + "x": 1540, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f39b33fc-0ad9-41f3-90b3-fab4eeadfa92", + "width": 70, + "x": 1610, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47c6e680-7c96-42fc-984c-d552b0d9528a", + "width": 70, + "x": 1540, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79ecbc79-3f53-4606-a304-5e498cad5ee4", + "width": 70, + "x": 1610, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b4f03aa4-b620-48ab-bc95-d0c113324ade", + "width": 70, + "x": 1540, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0431ed85-914a-415c-8597-4559e032e23e", + "width": 70, + "x": 1610, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390357a1-1339-49b3-bea8-6a0cb7eb3c69", + "width": 70, + "x": 1540, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57278e0b-f187-4b0f-89d3-f92db7a47889", + "width": 70, + "x": 1610, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b41d18bc-b81e-44e7-9351-e556209a3218", + "width": 70, + "x": 1540, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "868afe9e-0edd-48c4-a757-cd68b51e72cc", + "width": 70, + "x": 1610, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "efa87c36-2c5e-4578-9328-94c148981969", + "width": 70, + "x": 1540, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc4a1987-4ed3-4207-a93c-779f03b2d325", + "width": 70, + "x": 1610, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfe43280-3331-4fa5-adfe-ddf32a3d9df9", + "width": 70, + "x": 1540, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62c62cf7-8b13-4202-9350-73cbcf1344e6", + "width": 70, + "x": 1610, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91550e40-1c96-4592-b407-6d0aaf19421d", + "width": 70, + "x": 1540, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "661aa3cc-7e10-426e-8453-a5f525b2d0a7", + "width": 70, + "x": 1610, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4f369bb-f758-4b9b-bfb6-a146386a2b22", + "width": 70, + "x": 1540, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5172b2f6-eb32-4632-92ec-d1eb92b36755", + "width": 70, + "x": 1610, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71680225-94aa-4bca-a408-77f75bbef1ee", + "width": 70, + "x": 1540, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80b88bf4-aa10-4728-8ad6-91277033e9ec", + "width": 70, + "x": 1610, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "013454b7-b5c8-4ef3-885d-816621d0f099", + "width": 70, + "x": 1540, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "674a3cb9-d7c1-462f-904e-bfd6565eeefe", + "width": 70, + "x": 1610, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59ac8c6c-cec9-437f-9f00-e21f78e7f915", + "width": 70, + "x": 1540, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "300d79de-46d3-471a-b4ef-ffb1fc9ed66a", + "width": 70, + "x": 1610, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d6e7bb76-9165-424f-ab5d-02637c3b163e", + "width": 70, + "x": 1540, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4485543a-d902-4ff9-acc2-5901195e2b77", + "width": 70, + "x": 1610, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4985a62f-8b13-4c02-8ccb-2129516176e9", + "width": 70, + "x": 1540, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f71ab9f-6b68-4ace-8709-2748cca897f7", + "width": 70, + "x": 1610, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa5f2a9a-937d-4b34-beca-c4d2db9cafff", + "width": 70, + "x": 1540, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2fbe2d7-aef0-434c-af0b-54ff5273d1f7", + "width": 70, + "x": 1610, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cff49bc-506b-430c-87c1-d4acfbd5d35d", + "width": 70, + "x": 1540, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21362643-2dc7-4345-a3fd-ab58a3cd9721", + "width": 70, + "x": 1610, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22db8e26-42cd-4369-9eff-32e724d98a22", + "width": 70, + "x": 1540, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33616aae-0a66-4363-88fb-257b87e9c4cc", + "width": 70, + "x": 1610, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f56e8bff-834d-4ffe-ac7a-7ff91078ecdf", + "width": 70, + "x": 1540, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f5c763-dd07-4000-81b4-d1fe11fbd5bf", + "width": 70, + "x": 1610, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "394254b8-ac7f-4bef-9cfc-ae7c0333176f", + "width": 70, + "x": 1540, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21067ae8-d11a-429c-80ea-806ef8ee2165", + "width": 70, + "x": 1610, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "038a2958-93ae-4ecf-904e-f50113402a26", + "width": 70, + "x": 1540, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07ae30dd-3439-4741-90d5-06c00dc614ca", + "width": 70, + "x": 1610, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd897f1b-c8ba-4f20-99cd-e830ad3aaea8", + "width": 70, + "x": 1540, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d70f372b-d5bc-4862-a289-33b41016c336", + "width": 70, + "x": 1610, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "596a8392-1228-4473-acc8-e7e8b3c7d255", + "width": 70, + "x": -140, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bb14c00c-e494-4d46-a8fe-2d1f51aa0a2d", + "width": 70, + "x": -70, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f27efc7-3d2d-40ed-af81-1d8e71f4938d", + "width": 70, + "x": -140, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76709381-153f-4387-8af5-da08501cbe0b", + "width": 70, + "x": -70, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d09dd4a-29b0-4b3c-a4fe-ff5187af2c8b", + "width": 70, + "x": 0, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a47a37b-5455-4bf1-8f9e-da42fcf87764", + "width": 70, + "x": 70, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83c478d5-da15-4a3a-a950-f147b08145d1", + "width": 70, + "x": 0, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bfd188f-3385-4c20-b258-c36e87f0e526", + "width": 70, + "x": 70, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66450978-ec98-42be-99f9-ff2ac8588a33", + "width": 70, + "x": 140, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2deaa618-da68-461b-a3aa-f8c3df412b80", + "width": 70, + "x": 210, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fef46434-951c-48f4-abb0-ef500ecb0c19", + "width": 70, + "x": 140, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "388038ae-ae55-4af7-b759-4c3dfc81d93d", + "width": 70, + "x": 210, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e027b64-ddf0-4a9c-86dc-7615563749aa", + "width": 70, + "x": 280, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7dfe5cd-07e6-410f-82af-40a0603bdabb", + "width": 70, + "x": 350, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "40de6a1b-2ec0-4fdf-92ac-89b989041efb", + "width": 70, + "x": 280, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13b77f2e-d356-4776-86ac-a9f0115623e8", + "width": 70, + "x": 350, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad065a91-41ef-4871-94da-5f9201ae44cc", + "width": 70, + "x": 420, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80befa9e-8b06-40db-b6ac-2308214aab21", + "width": 70, + "x": 490, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91c95537-f7f3-4948-a983-923fe06de3b3", + "width": 70, + "x": 420, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2a5b49a-0237-4959-986f-775c78533910", + "width": 70, + "x": 490, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7093b511-72a3-446a-b5a1-4e12314f08a7", + "width": 70, + "x": 560, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc542a97-95e8-40bd-869b-14dcf8b84226", + "width": 70, + "x": 630, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6182b90-9019-4535-bec5-4878417a77c5", + "width": 70, + "x": 560, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d3fc250-01bf-4ea2-ad56-f5d44e839578", + "width": 70, + "x": 630, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f6cfe29-62ea-4763-a259-eae4a138238e", + "width": 70, + "x": 700, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58edc0a3-edfa-4714-ad4a-dd3042a93a22", + "width": 70, + "x": 770, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d40dbdd5-2c95-422e-a9a8-76b789c27134", + "width": 70, + "x": 700, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f201b455-e031-4c2c-92b3-ab8318f5e501", + "width": 70, + "x": 770, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "02437537-f701-4f67-98b3-6150f96f9abb", + "width": 70, + "x": 840, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7247f601-a750-4757-be03-95644999d829", + "width": 70, + "x": 910, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e38c65b3-3db3-4f69-b762-24c630521378", + "width": 70, + "x": 840, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b189f5f1-e173-4952-af1f-f435ec2f18f7", + "width": 70, + "x": 910, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de05e9a8-bb45-44d6-8ea5-62d82ea7e4ef", + "width": 70, + "x": 980, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36134eab-d4a0-4d0c-9494-ee902bff94e6", + "width": 70, + "x": 1050, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "731e65bd-b54d-462f-b387-0516ac4748be", + "width": 70, + "x": 980, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bca10290-37bf-4c4f-8b67-eec9b04368b1", + "width": 70, + "x": 1050, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7efa1283-fadb-4490-be4e-a2aedf74c4fd", + "width": 70, + "x": 1120, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "501985b9-22b8-4ce8-b9bf-e8ff03e2f71d", + "width": 70, + "x": 1190, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "309cc4f8-e250-4317-b8eb-e1e0e0f0029e", + "width": 70, + "x": 1120, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4b0f663-c25b-449e-90cd-9fb49e325fc0", + "width": 70, + "x": 1190, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f17e8054-9f4d-4e9d-98ac-ea24db0463fa", + "width": 70, + "x": 1260, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c841d36-a517-482f-97a6-f6bf29f491fb", + "width": 70, + "x": 1330, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ff71b97-3aa4-4634-8517-a988781a78f4", + "width": 70, + "x": 1260, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16191852-dea1-4ee9-a962-7079f67a471a", + "width": 70, + "x": 1330, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00456f69-c402-419f-a113-b07c4cb50a39", + "width": 70, + "x": 1400, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc092547-6921-461e-8626-545397380833", + "width": 70, + "x": 1470, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0d984a7-363b-4502-aa41-de45f4c9c2b0", + "width": 70, + "x": 1400, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3cc08433-0cba-496c-8e34-bcf07f22c919", + "width": 70, + "x": 1470, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b16c7b6-7836-4bad-bab3-ae89ddca38ca", + "width": 70, + "x": 420, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ab723958-aa6f-4829-9d88-3864029f09c1", + "width": 70, + "x": 490, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6199cdb3-773a-49b2-95a1-60400732ebe7", + "width": 70, + "x": 490, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a801694d-8863-462b-9fe0-33d4e4e1dc97", + "width": 70, + "x": 420, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "273b986d-73dd-4695-abd6-7826ad3c674e", + "width": 70, + "x": 630, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0fd71224-e784-48b1-a67e-333ce99ad224", + "width": 70, + "x": 700, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c1b8296-1771-428e-8162-eab8c7d54ba4", + "width": 70, + "x": 630, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c33c3b-abed-4e9d-bdfc-5f1bbae6f94a", + "width": 70, + "x": 700, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7966ca3-d4e6-4446-82da-616503c036cc", + "width": 70, + "x": 280, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce2c49f3-814d-47c3-8809-fa8e483ff7a8", + "width": 70, + "x": 350, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac6baa3b-9d4f-451a-a027-09e7c62a633f", + "width": 70, + "x": 280, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77138893-9f1f-4276-8a89-fd0a11c77e9f", + "width": 70, + "x": 350, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd7bc592-ac08-4854-81e1-63bd4b108a9c", + "width": 70, + "x": 560, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4cfb556-c445-4e0a-b304-d6a56d6ecdda", + "width": 70, + "x": 560, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "090dfb5c-c0d2-47c4-9167-11991f2c9ac3", + "width": 70, + "x": -210, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "952befa7-350c-4ea6-b300-ea489d5bd768", + "width": 70, + "x": -280, + "y": 1120, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c99e1eb1-8816-4957-8658-3d3ae9aba6e7", + "width": 70, + "x": -280, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3565e430-07bd-44b3-a2ce-fb8bb6ad74c0", + "width": 70, + "x": -210, + "y": 1190, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8cea11f-2f08-4fe3-abff-e18e9b80d504", + "width": 70, + "x": 0, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa9f3490-559f-4629-86e5-22cee51cf67d", + "width": 70, + "x": 70, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3cf03b0-1c6b-437f-b5f0-9f31af019511", + "width": 70, + "x": 0, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07800701-cdee-4c26-b7bf-8783ad919277", + "width": 70, + "x": 70, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19f3c4f6-855a-4f9f-a3cc-a36de7307835", + "width": 70, + "x": 140, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a15b6ef-7812-4a73-b2c2-c43ca24e2ff5", + "width": 70, + "x": 210, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c7c7205-62a3-48d9-af16-ee15f0878adb", + "width": 70, + "x": 140, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e06d3d3-254a-4e1a-b182-9aaa108973b8", + "width": 70, + "x": 210, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5b97b4a-e614-47f1-abb5-69d20942638e", + "width": 70, + "x": -350, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e7d6b02-f964-428a-b3df-647e8ad7eeac", + "width": 70, + "x": -140, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66128acc-0826-4879-bdee-70a60484a584", + "width": 70, + "x": -350, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89abc7c8-6c14-441b-8697-6009b1525159", + "width": 70, + "x": -140, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "317ba734-3eb5-46bc-aab3-57e85ae86774", + "width": 70, + "x": -490, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfd5093b-cf6f-41eb-8d27-d14d383680af", + "width": 70, + "x": -420, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba63737b-49e0-4a99-a1e9-b38bad43861a", + "width": 70, + "x": -490, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5114d044-68ba-4e22-8ce4-75518bc88d46", + "width": 70, + "x": -420, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a01b5bf3-d993-4833-b93c-b4c94167c626", + "width": 70, + "x": -630, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d62a2905-0210-4020-a366-d4811759263c", + "width": 70, + "x": -560, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1c5781a-d56a-4fff-96b0-34cbf606973d", + "width": 70, + "x": -630, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7272ff09-e240-4faf-b02b-014816cf2477", + "width": 70, + "x": -560, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63d357d4-9d0f-488f-a29e-83fc17d8698b", + "width": 70, + "x": -910, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13d5c967-d21e-4a4c-8c1a-120433ec4db9", + "width": 70, + "x": -70, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f99faec-d38c-4e16-94d1-74caa24cda2b", + "width": 70, + "x": -910, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "241f6be0-f87e-4ac1-8683-f8eca2aeb395", + "width": 70, + "x": -70, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78a5b632-4250-41de-8ea4-1d8345d51238", + "width": 70, + "x": -770, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "712ab54f-3220-44ee-b273-6c76a035fb11", + "width": 70, + "x": -700, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a47c310-25e1-4d18-b603-66a0c4e10245", + "width": 70, + "x": -770, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6403f951-ac60-4069-bc48-51db8d044c08", + "width": 70, + "x": -700, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a2d1fc6e-24bd-4d01-819f-b83fa49de7b0", + "width": 70, + "x": 560, + "y": 1050, + "zOrder": 115, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b311db4-b01a-49c0-bc98-836ceb539869", + "width": 70, + "x": 630, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "00467e28-1cc0-43ec-aba8-5c1b605285a4", + "width": 70, + "x": 700, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5702dbfb-70f6-4109-bcdd-73e5d772ac29", + "width": 70, + "x": 700, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c95d69f3-0f6b-4bc1-af13-bff8c7bb23cd", + "width": 70, + "x": 700, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2912d545-ecf1-4a9f-967c-fd0b89172e79", + "width": 70, + "x": 700, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1f16e96-0360-4d53-9203-cfe1b440e4e8", + "width": 70, + "x": 700, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54c40cc1-4e52-485d-969f-b836244f9226", + "width": 70, + "x": 700, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "82873e8f-71e5-4b17-8593-2a8e5a34e52f", + "width": 70, + "x": 700, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b78b5acb-8fe0-4281-a6f7-691fb9dfde29", + "width": 70, + "x": 700, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2d5ca299-ed23-4c61-a435-f41d12d2a0fd", + "width": 70, + "x": 700, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9981aab4-b8c3-419c-9a92-20224b0b5d98", + "width": 70, + "x": 700, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d45ef463-2519-4dbc-944b-2541cdfe2aba", + "width": 70, + "x": 560, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da0503c6-1009-4107-b5b8-7d2b2b789ca1", + "width": 70, + "x": 630, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c10d9808-30e4-40dc-b32e-013f1f2635ac", + "width": 70, + "x": 420, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ca719108-2c5e-4b2d-928a-38ca269ff1e6", + "width": 70, + "x": 490, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05acc597-03e0-42ba-a510-b7a92f26d76c", + "width": 70, + "x": 280, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [ + { + "name": "Id", + "type": "string", + "value": "1" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c70c022-fd5b-4fe6-9f33-ba501db2d388", + "width": 70, + "x": 350, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8d386d79-ca44-4a34-afb0-ac62f58746e2", + "width": 70, + "x": 140, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0a6d45da-6eba-41bb-a818-b186c7d92141", + "width": 70, + "x": 210, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "440bd0e0-f9a5-49d8-b40c-db52ab388627", + "width": 70, + "x": 0, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "91c63811-86e4-4ba9-9de0-806283f1e96e", + "width": 70, + "x": 0, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5badc14d-fd0f-4a06-a5e4-33bc4b5c807f", + "width": 70, + "x": 0, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c55ea66a-0209-4ac0-9a45-9ad23d5753d1", + "width": 70, + "x": 0, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "33fa0ae7-89c4-4d2e-891b-10a3bba064e4", + "width": 70, + "x": 0, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9738bd51-9c54-4ddc-af5b-0a7e926a69f8", + "width": 70, + "x": 0, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f843ef6c-ea20-4175-aff0-a7ab0665f0aa", + "width": 70, + "x": 0, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "19edc6dc-2703-4e70-adcc-22348d764efd", + "width": 70, + "x": 0, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b28ec0e-1d30-4ef1-912e-201e54cab4c1", + "width": 70, + "x": 0, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d949838d-aa44-4fa2-85c2-0d8cc2342fcc", + "width": 70, + "x": 70, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d8192924-06db-4891-88fc-a556d04a1514", + "width": 70, + "x": 0, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "69aab11d-55d6-44bf-98ae-57291c0540ad", + "width": 70, + "x": 140, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6dff53c2-6b34-4501-b578-2a9d9740bb4f", + "width": 70, + "x": 70, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ebec8e1b-f443-4bd2-ba37-f279b776d542", + "width": 70, + "x": 280, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4b7956e3-b8a3-4b11-90ae-064195c744b4", + "width": 70, + "x": 210, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "249f7dce-f389-4dad-9f56-e6b909010114", + "width": 70, + "x": 350, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a73699d5-b3f9-4528-aceb-2c1527457d6a", + "width": 70, + "x": 0, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4b4b1509-5fd6-44c0-9da9-751496771205", + "width": 70, + "x": -210, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "763861b9-8087-49f9-b9b4-9b62b300bfc5", + "width": 70, + "x": -140, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c3e9591d-05fa-4c36-a3a5-0e058f4490c1", + "width": 70, + "x": -350, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f992f04-5089-4504-b6aa-07d53dbfd3cf", + "width": 70, + "x": -280, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7684a836-1680-438e-85a2-d7658cd7bfbd", + "width": 70, + "x": -490, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a34a5764-3e41-49ec-8214-13634f012f98", + "width": 70, + "x": -420, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ecb2df85-43ff-46f4-97de-857bd0e5bf86", + "width": 70, + "x": -630, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d0e50798-94f1-41c0-834f-281c32a295c6", + "width": 70, + "x": -560, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a86db12d-2ba7-43fc-a449-2f0df36b9a2c", + "width": 70, + "x": -700, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a444477c-00f0-4f3c-89cf-0ee25a610ffd", + "width": 70, + "x": -910, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3b9a6a71-c576-44a2-931b-dca3df5223d7", + "width": 70, + "x": -840, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6a48810d-a4b0-40a2-bbb1-31c1246694e8", + "width": 70, + "x": -770, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "37169d51-c96d-4234-8520-0d04eafdcb94", + "width": 70, + "x": -910, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f469133d-1a09-46dc-bc12-7c6de605c425", + "width": 70, + "x": -910, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fd3baa04-a34f-4f69-9eb2-97021f83054d", + "width": 70, + "x": -910, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "255e0fd5-e168-431e-95d2-440780a41cbe", + "width": 70, + "x": -910, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "923b4898-3067-4fa4-a938-a31a0721104c", + "width": 70, + "x": -910, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "44865652-40ac-409e-a00d-fb2293d90d93", + "width": 70, + "x": -910, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97c0fdcf-8976-4436-a9f2-c7461190f771", + "width": 70, + "x": -910, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8afeb6f6-7cfa-4dc2-be2f-d897c3586d50", + "width": 70, + "x": -910, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f26c778a-2780-42d6-b9d3-092c58f89a58", + "width": 70, + "x": -910, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "300090a4-a583-42f8-bfcd-0e4b5e06ea97", + "width": 70, + "x": -840, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5cfb8271-9dd7-4ede-8305-bc5a1e7a46ff", + "width": 70, + "x": -770, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c21dd97f-7d3c-4972-be87-e29d9215a968", + "width": 70, + "x": -700, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "41fbb43f-7a07-4e73-90e3-4ed90775c2b2", + "width": 70, + "x": -630, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fc578b6d-c1ad-45c6-b4d7-b7c828fbf3d6", + "width": 70, + "x": -490, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bc65b1a-208e-489a-81d5-3a6152acfbed", + "width": 70, + "x": -420, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e783d849-2795-459d-a85e-f7fcf8b64a30", + "width": 70, + "x": -560, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "569f34cd-51cc-4b7e-8cf3-5f527bab2fe4", + "width": 70, + "x": 0, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dae20420-327f-4f2c-850d-2c5e94d3b732", + "width": 70, + "x": -140, + "y": 1050, + "zOrder": 115, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "afb42eed-95a1-4dcf-b337-05b7b87f81e6", + "width": 70, + "x": -350, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a56009ce-f52a-40d8-b915-ae2f22c5aa93", + "width": 70, + "x": -980, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06f58a07-1c91-442b-bce7-60293a8ab1ab", + "width": 70, + "x": -980, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85bf9d0b-4737-4bb1-8e97-ced4323e1ceb", + "width": 70, + "x": -1050, + "y": 1960, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18854c57-5bf1-42b0-bab2-6cc4ec0386e7", + "width": 70, + "x": -1050, + "y": 2030, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d41d771-84f0-4259-8b29-90b3ca45d020", + "width": 70, + "x": -1050, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b30313b-76f6-40fe-8606-dc589eaa5d29", + "width": 70, + "x": -1050, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee5f1d80-20ff-4e9a-b289-0aed4c49c7b0", + "width": 70, + "x": -980, + "y": 1330, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef62af1f-c6f6-4ce6-bb46-1582beb1a69b", + "width": 70, + "x": -980, + "y": 1400, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8905f6ce-4466-4d25-a855-37a90cc37248", + "width": 70, + "x": -840, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcbfa298-b36f-4fc6-9f0f-4c5f9c5e6f75", + "width": 70, + "x": -840, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f5b20c1-44dc-4fc2-98ea-f0bd2dbd95d8", + "width": 70, + "x": -910, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "217fe961-b9d4-4d22-bb80-ad93085c4d38", + "width": 70, + "x": -840, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f63c0e5-826d-4071-a3b1-d92d5383441a", + "width": 70, + "x": -840, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d747b0e8-9eb1-48d6-a8a9-a965d6c65314", + "width": 70, + "x": -910, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6547895-4d3c-4afe-b0a9-bb29c6b52a75", + "width": 70, + "x": -910, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "759738ad-beae-4fa8-93a4-7542bd0edf08", + "width": 70, + "x": -910, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8eefe91-c146-44aa-8aa4-d91fa1cf6ab1", + "width": 70, + "x": -840, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58947a0c-61f7-418f-b2ee-fcf1cf0d340f", + "width": 70, + "x": -840, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01fbcc23-e2fe-4844-b8be-f2fba3b2a8df", + "width": 70, + "x": -910, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5109328c-a4b2-44cc-9d58-380da40209aa", + "width": 70, + "x": -910, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6e085ca-8b5e-4238-8e12-122cfe0acbfd", + "width": 70, + "x": -840, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8c1df46-510a-4a7e-8c6f-fb7d14b9a866", + "width": 70, + "x": -840, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e21ed9fe-97ee-4df6-ad69-afb1105bebb9", + "width": 70, + "x": -910, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a8117232-5011-4410-acb5-b33c800f7b4d", + "width": 70, + "x": -840, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb14ab4e-d9e8-4c3b-8b68-b957e4ba774f", + "width": 70, + "x": -840, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cdd562e-533f-4d57-a2ee-13d8764b9f97", + "width": 70, + "x": -910, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4cc77279-fc8e-46aa-a13f-dee5bd6c4f55", + "width": 70, + "x": -910, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55244fbb-403d-4313-9a38-83af96f42e47", + "width": 70, + "x": -910, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fbed9e45-3e84-4c09-82de-fa3276726d5e", + "width": 70, + "x": -840, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f5b61e3-a4a6-483e-93a2-86b7c846bf8b", + "width": 70, + "x": -840, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "973ef4e3-a172-4ac7-acf9-6274f4dad67f", + "width": 70, + "x": -910, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "050e6d96-2f7e-4dc0-b94d-b61d65c4d3c9", + "width": 70, + "x": -910, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92bf4312-af02-4fe8-92b9-cded82d1f066", + "width": 70, + "x": -840, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6feef26-5cee-4f68-ad39-b63b4b3ad482", + "width": 70, + "x": -840, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9e6589c-1101-409d-9db6-852a5e730087", + "width": 70, + "x": -910, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0762986-ce5e-454c-9dd5-6524ff0dd7e5", + "width": 70, + "x": -840, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "15e3168f-44f7-422d-8c01-4af0a548669a", + "width": 70, + "x": -140, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d8ef93e-6770-4a1a-a767-9bbd5b911727", + "width": 70, + "x": -70, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a647b260-1f27-4a1d-a038-54adf45bc460", + "width": 70, + "x": -70, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20054fd6-fd6a-4768-821e-9b7c23ff89b0", + "width": 70, + "x": -140, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4b02db4-122f-45f4-b44f-e5b5a93c72f5", + "width": 70, + "x": -140, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "035bc736-e93a-43a1-8144-f0a3aa46c9cd", + "width": 70, + "x": -70, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65747dbe-9fae-4dee-bcef-6477c9fc162a", + "width": 70, + "x": -70, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "493653c2-f93f-4ebc-9061-ee5582e8a090", + "width": 70, + "x": -140, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f7dd47a-be38-48e3-86e0-0b8dac6bd0a6", + "width": 70, + "x": -140, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af76397b-2269-46ef-bc85-086d95862578", + "width": 70, + "x": -70, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f6e5163-bd9f-4920-bb84-d11b817205e4", + "width": 70, + "x": -140, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "209d0e0e-0750-4576-b2ae-0861b38a58a7", + "width": 70, + "x": -70, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8ab1a33-868a-455f-873d-0b0a8da97617", + "width": 70, + "x": -70, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fbca420-5732-4dae-8157-ce0d3d35246e", + "width": 70, + "x": -140, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "201ed931-c2a5-4671-abaf-711f0c872310", + "width": 70, + "x": -140, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b91616ec-38d8-4cc0-acbf-458bc4806464", + "width": 70, + "x": -70, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "189b95ca-d762-4e0c-bac0-bfc02cea8772", + "width": 70, + "x": -70, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bdb2cb25-4394-471f-8e43-905509f7ba67", + "width": 70, + "x": -140, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fbd53d1-f007-419e-acdb-2e4dee1d9fd8", + "width": 70, + "x": -140, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90d9f2aa-f137-4c41-92a7-a22503acb732", + "width": 70, + "x": -70, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "931b39a8-72c3-4fdd-9547-cc43eecd919c", + "width": 70, + "x": -140, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78db50b0-32aa-4120-ad61-786fcbfb44a2", + "width": 70, + "x": -70, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01226c28-e5b8-4cbe-94b2-700b73e5c91f", + "width": 70, + "x": -70, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18e1b7e6-dade-4a94-9979-51fabdd4be4b", + "width": 70, + "x": -140, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9570499a-386a-4e60-b73b-d8394af35295", + "width": 70, + "x": -140, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77d886a6-5e7b-4ceb-a153-b97f7f5c4619", + "width": 70, + "x": -70, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ab31f66-dc97-412d-bf1b-0b846aa96a5e", + "width": 70, + "x": -70, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fed097d4-09b1-4a80-937a-3666958eebcd", + "width": 70, + "x": -140, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22ec0ae8-0ecf-4688-8119-daddf1fcb240", + "width": 70, + "x": -140, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9a95fc3-38d6-4f42-97d7-226831d90533", + "width": 70, + "x": -70, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c3c383d-b321-48a5-9e9d-5bbb199f1e9e", + "width": 70, + "x": -2030, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5775c049-515f-407d-85b4-a99c99a7e6bb", + "width": 70, + "x": -1960, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e822bd98-d70b-4a01-9963-986235dca7f5", + "width": 70, + "x": -2030, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cea0c072-66b9-458c-8ef7-8e0f2a2960ba", + "width": 70, + "x": -1960, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03c6eace-f214-4bf0-8e9e-277e12c77876", + "width": 70, + "x": -1890, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21c685ca-dfe3-41bc-a038-08f13f2d0ec0", + "width": 70, + "x": -1820, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac5cfaaf-5c78-4e24-863d-23a077692fd5", + "width": 70, + "x": -1890, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0648219f-3599-4915-8a21-d23faf1bd6d4", + "width": 70, + "x": -1820, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "894b2818-8d27-4912-a91f-c5509b6a7aae", + "width": 70, + "x": -1750, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "165cc355-7474-4207-8acd-1430fb81e80e", + "width": 70, + "x": -1680, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b72961b4-84c0-4f16-b7b2-67923b1c9dad", + "width": 70, + "x": -1750, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eadda117-690c-45b3-b247-6779b6d3ec0a", + "width": 70, + "x": -1680, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc5f6b7b-6792-47da-97aa-e81871af67b7", + "width": 70, + "x": -1610, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5635340d-c282-4f7d-bbd2-e028765b15b9", + "width": 70, + "x": -1540, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1d06232-04a2-4f8d-9fc7-5f6c5327f2ed", + "width": 70, + "x": -1610, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58346733-93fb-4315-a990-f015decb6248", + "width": 70, + "x": -1540, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50a0f0f5-e10f-4c65-aa74-1010943daa41", + "width": 70, + "x": -1470, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58e0a02b-046b-468c-bbfd-ee1f32927e42", + "width": 70, + "x": -1400, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb506bab-e5f5-433a-b8b3-641916f0ed08", + "width": 70, + "x": -1470, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3d69d3a-7a32-4c24-a099-f18916f61810", + "width": 70, + "x": -1400, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ba3f2f8-81cc-49a8-b714-4938d746b9d9", + "width": 70, + "x": -1330, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16e6c166-0905-4c13-aae7-98c2f4f02c4b", + "width": 70, + "x": -1260, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b737d67a-ea15-4834-ba32-cad88473f70f", + "width": 70, + "x": -1330, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31989ba8-53c4-4fe7-9396-0a9520e98998", + "width": 70, + "x": -1260, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a4c3a82-1845-4fe1-859b-c8308fca6434", + "width": 70, + "x": -1190, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8543757c-1a53-4695-8747-79ede0873b43", + "width": 70, + "x": -1120, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9863708e-02ad-4da3-a1a0-235c3db1dbc7", + "width": 70, + "x": -1190, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c34d4a52-15ec-4fd3-8fd0-d22db7ee5286", + "width": 70, + "x": -1120, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d43d569-e8f8-4844-aee5-5691c40e14c9", + "width": 70, + "x": -1050, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7a1d57b8-ddc3-439a-9044-ec8d354091d7", + "width": 70, + "x": -980, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b1b49ac-5a4b-4aa3-ae67-42a9c72e914d", + "width": 70, + "x": -1050, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "438b4b64-12c5-4b1b-bd80-ddcf8a6920ed", + "width": 70, + "x": -980, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b306b3db-49ec-46d1-9de1-de578adf9ce4", + "width": 70, + "x": -3150, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8941896-4dea-42a8-ae79-e07418c51a55", + "width": 70, + "x": -3080, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bd44fec-985c-4c76-9281-ea8942c9a7da", + "width": 70, + "x": -3150, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a351df3f-777e-4fdd-864e-8be9809171fc", + "width": 70, + "x": -3080, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9461043-8ba8-4fa7-83fe-acf7bc0fc6fa", + "width": 70, + "x": -3010, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed202f54-3825-4ee1-bab1-d8cbdfbb9b14", + "width": 70, + "x": -3010, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1fdb2002-8264-413e-a0df-8ad156cc5fcb", + "width": 70, + "x": -2730, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37f7c23e-8dc1-409f-a0c5-d22f88cc8717", + "width": 70, + "x": -2660, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ec26a7e-a6d6-46d3-a75d-e67fd7924928", + "width": 70, + "x": -2730, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "889d86ba-d169-4213-8f42-1c1435638bc4", + "width": 70, + "x": -2660, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "760026b8-d518-4c77-bd2b-1fef601012ed", + "width": 70, + "x": -2590, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b562c44-bf8a-4ab4-821c-e53ab949609a", + "width": 70, + "x": -2520, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dabb582e-bd15-4b95-b9fa-7fa85aa7ddc2", + "width": 70, + "x": -2590, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecf4fc22-a0ed-47bb-af0b-98832b591b06", + "width": 70, + "x": -2520, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19ee11eb-88dc-41d2-a0be-8860bc0f38fe", + "width": 70, + "x": -2450, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3591995c-1659-470c-862f-a57371a715de", + "width": 70, + "x": -2380, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3b262e13-322b-4b86-8472-473136806c4b", + "width": 70, + "x": -2450, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99d824ba-7072-48cf-8c4f-3b5125e330b8", + "width": 70, + "x": -2380, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e625ce1-7247-4526-a3f8-1b4a31937266", + "width": 70, + "x": -2310, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0f57fe8-ee38-4697-90ff-7a0849b579f3", + "width": 70, + "x": -2240, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a11ebf36-4500-46e6-9899-ca93f071c22e", + "width": 70, + "x": -2310, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "970c45ab-7092-4502-af95-575ea782eb52", + "width": 70, + "x": -2240, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3b11c61-5b75-482f-8117-7d242463a4aa", + "width": 70, + "x": -2170, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5cdd805-dbdb-4e0c-8a38-5382d3c347b7", + "width": 70, + "x": -2100, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5417121d-250b-4a02-af6e-72e69152ede4", + "width": 70, + "x": -2170, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc8c9cba-eb88-40ec-8b21-b02eeaabe97b", + "width": 70, + "x": -2100, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1700c8ba-8f99-464a-a8c9-601d938d092f", + "width": 70, + "x": -1120, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c53db4d-54da-482e-b01d-1f4ef2d70507", + "width": 70, + "x": -1050, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4abf742b-0e6f-40e8-910a-869323fe01e0", + "width": 70, + "x": -1120, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b0a4fc9-f586-4707-bf26-6bd2f42e0209", + "width": 70, + "x": -1050, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83013a3e-4871-464c-9b17-0923acb8367b", + "width": 70, + "x": -980, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4603dda6-574d-4578-a3f3-d028ae21070c", + "width": 70, + "x": -910, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b9e28c2e-5105-4144-8c24-69416dd31b1f", + "width": 70, + "x": -980, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7da31a99-1bcd-4cbc-a7dd-8b45d1e15de5", + "width": 70, + "x": -910, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9001236b-3304-4c44-b4b7-a804b7e954b1", + "width": 70, + "x": -840, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "760d7140-5573-4618-ad31-40ec424bbd8f", + "width": 70, + "x": -770, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecc4771d-5c6c-455a-9d9a-a329131ca855", + "width": 70, + "x": -840, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6866e47-8bed-4840-b502-6d912af7712a", + "width": 70, + "x": -770, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c6447bf-1ed8-417f-b786-b5d7eb205cfd", + "width": 70, + "x": -700, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae7d10ee-09b1-49fb-bf5a-8922f24e268e", + "width": 70, + "x": -630, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6eaea524-3c4d-46bb-9120-49813c291380", + "width": 70, + "x": -700, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3be2bbd3-8dc0-440d-8aad-caf0296221a4", + "width": 70, + "x": -630, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe59e09b-d723-4d3e-b6cc-362c42709408", + "width": 70, + "x": -560, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89d6fa69-6609-4f64-80f8-9753da8dd612", + "width": 70, + "x": -490, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de6ee2b4-756f-4a86-a7f7-dfc710ce7212", + "width": 70, + "x": -560, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41add6e1-d38c-404a-b5af-e8b30de982aa", + "width": 70, + "x": -490, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c12561a2-4dbc-4ede-97ac-b8f9cd201143", + "width": 70, + "x": -420, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cfd8878-1b1e-41ad-9b84-164759a1be05", + "width": 70, + "x": -350, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07ddce62-f54a-4f2c-8a8e-1eef8ebaf7d4", + "width": 70, + "x": -420, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bc321b0-4f1c-400d-a317-dcfeace54317", + "width": 70, + "x": -350, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14efbdf0-e69f-4d1a-92c2-77e6b03c1765", + "width": 70, + "x": -280, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "666421f4-bc58-48fa-b75d-e82aec67b730", + "width": 70, + "x": -210, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5453884c-ddb7-425c-903f-ca3842b42f76", + "width": 70, + "x": -280, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb788d75-bf41-4dca-8871-bcce06a06c7b", + "width": 70, + "x": -210, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bf251aa6-1a48-4fe2-9bd6-a4271f776943", + "width": 70, + "x": -140, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd09d2b4-3cc4-48bd-bffc-2477bca51335", + "width": 70, + "x": -70, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "72f89a48-33f0-4e64-87a6-990b24773020", + "width": 70, + "x": -140, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69da754d-b9e1-4cb5-b5ce-a3dfe6fbe1dc", + "width": 70, + "x": -70, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85c78871-6b5b-46f8-93fd-12cd6f6e748a", + "width": 70, + "x": -2240, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef73c958-621a-49b4-9bb2-e083329dc489", + "width": 70, + "x": -2170, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8f2aaa3-53bd-4115-a79f-0cb1dbfb5194", + "width": 70, + "x": -2240, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6bab10f7-2b7b-49fe-a1fe-7c7b5894b35b", + "width": 70, + "x": -2170, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f182cec4-713e-48c9-ba2d-13a039254c5f", + "width": 70, + "x": -2100, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "094fb0f2-22d4-4ac6-af38-e7a976ae2bdc", + "width": 70, + "x": -2030, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73939e4b-dbe3-4d1a-b2ee-ec9f893ed13d", + "width": 70, + "x": -2100, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08640027-6dbb-440e-af83-0bc300ac6ce6", + "width": 70, + "x": -2030, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7f9c200-9a45-405b-9db9-2a981b536418", + "width": 70, + "x": -1960, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e625898a-356b-46d9-9055-f78a45c6081e", + "width": 70, + "x": -1890, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4937b80b-cc98-454c-aa44-89840bba6815", + "width": 70, + "x": -1960, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03ae7cfb-b5b9-428d-a4ca-6e29de51f339", + "width": 70, + "x": -1890, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83c2f2b3-5776-4840-aa9f-e6790fd708b8", + "width": 70, + "x": -1820, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c3fb704-4362-496b-9aef-ccb3a43b4f48", + "width": 70, + "x": -1750, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b68c735d-5909-4d87-8753-49e862e9b68b", + "width": 70, + "x": -1820, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61c51993-4de4-48b9-87be-4b72039f7f3a", + "width": 70, + "x": -1750, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52547319-be3b-4d16-85d0-1719cbd0927e", + "width": 70, + "x": -1680, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "708e77de-6ce6-4cd0-a2ff-e5dbd1aaf130", + "width": 70, + "x": -1610, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9a65ed1-958f-4e73-99da-1e8339c4c829", + "width": 70, + "x": -1680, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6f3f6d1-1791-4752-906e-29a82d16f0d5", + "width": 70, + "x": -1610, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "894cf56c-96b1-4e61-9288-4196302e7e46", + "width": 70, + "x": -1540, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9b58553-84b9-49cb-b6c6-d144c6844dbd", + "width": 70, + "x": -1470, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4b6ef59-6e37-4597-bad8-d9a693c6980e", + "width": 70, + "x": -1540, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b24b6a5-51f5-4c31-bace-cf0a15db7f44", + "width": 70, + "x": -1470, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f96f0207-6f4f-4ebc-a2f6-aade357c23ca", + "width": 70, + "x": -1400, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc43bde3-9765-4f3d-a249-0d3b8e14ebad", + "width": 70, + "x": -1330, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28dd925b-8e02-4db4-8ac4-2f63c009cf89", + "width": 70, + "x": -1400, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a954af7-a7ad-496a-a47e-2c33db759bb3", + "width": 70, + "x": -1330, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12e97e70-03ea-436a-befc-a959ffd48671", + "width": 70, + "x": -1260, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ae10c474-f297-46e5-ae59-25156bffe520", + "width": 70, + "x": -1190, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d3223755-afc9-4413-b535-538808a4371c", + "width": 70, + "x": -1260, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "673260bc-47c9-4788-aaea-4b9d9f909329", + "width": 70, + "x": -1190, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cacc3dde-b6ab-4b49-a5fe-84e899cdd2cf", + "width": 70, + "x": -70, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0b642714-1ed6-4498-ae00-0d52b669e647", + "width": 70, + "x": -70, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "b09cda94-3c28-44fc-b95a-d49943c138be", + "width": 140, + "x": 140, + "y": 910, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "b2a47a50-aa87-4eb6-b58b-c454055a4609", + "width": 140, + "x": 140, + "y": 630, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "f455fae4-a981-41cb-9f42-ebc230edd898", + "width": 140, + "x": 140, + "y": 770, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "03be6f60-e612-4fee-8eda-38db86fac3f6", + "width": 140, + "x": -792, + "y": 651, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "74cf8db3-6136-4ba7-ad29-310960268231", + "width": 140, + "x": -792, + "y": 931, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "94f6e78c-1719-403f-a3c6-076f98bf4720", + "width": 140, + "x": -792, + "y": 791, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46b965cf-acc1-4592-a2f7-4adbf6de7ac6", + "width": 70, + "x": -980, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9d037289-8f77-4a52-bf9b-8ab0df1ff369", + "width": 70, + "x": -980, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0fba62e4-4fcf-4325-a2ff-bb8c1f0826a5", + "width": 70, + "x": -980, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8f4f88f8-485a-451d-b300-75463026f64f", + "width": 70, + "x": -980, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd1b4156-432c-4702-a5c2-f4c44a96b0d9", + "width": 70, + "x": -1470, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b36e8a70-21ff-4fa3-a6ee-0e73782c5411", + "width": 70, + "x": -1120, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1096eda-44b6-4843-afd6-0a2fb27b0788", + "width": 70, + "x": -1190, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cb4e1d4f-66e8-4fb7-84ca-595ad8509966", + "width": 70, + "x": -1050, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c0068524-8ad5-48b2-b97b-87bec81d38c5", + "width": 70, + "x": -1540, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1841e7a0-088e-441a-aad5-a4f2aca261ea", + "width": 70, + "x": -1400, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7c3530d3-ab42-4516-8126-eed61488ccdb", + "width": 70, + "x": -1330, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c549bc4a-7c0f-4f3d-ad33-5442c40e2206", + "width": 70, + "x": -1260, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "abeb9985-cdab-4765-a987-3095b56a0668", + "width": 70, + "x": -1680, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4f9da10-f270-4a1c-b060-b4e03a83e514", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ade4595b-07cf-41c1-849f-53288e77da03", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b54184f8-91b5-4757-a780-0d4454fdd056", + "width": 70, + "x": -1680, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07698671-edda-4c85-9967-32af9785d79d", + "width": 70, + "x": -1680, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d50db919-2104-455b-ac8c-335ad1539b98", + "width": 70, + "x": -1680, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b476c0d-426b-498b-9764-3a6392e611eb", + "width": 70, + "x": -1680, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "086b0e45-6427-4e93-ba8f-d87de976fc83", + "width": 70, + "x": -1680, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c813d0c2-8e52-4ff2-baf2-1268c0b5e6bf", + "width": 70, + "x": -1680, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa1aa9b6-4405-4f70-9423-7386d8bf7e48", + "width": 70, + "x": -1680, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "64e2bc1a-6ed1-4730-a450-01f22b757448", + "width": 70, + "x": -980, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "707d4846-77e4-4ac8-b017-e4aab8d59ed3", + "width": 70, + "x": -980, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa9bbfe4-af78-404f-8a96-38ae5640369a", + "width": 70, + "x": -980, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "35ec0425-7d90-44cf-80b7-3145dece8f8e", + "width": 70, + "x": -980, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dc2feba8-8dd5-49e3-94b1-fdc87657c894", + "width": 70, + "x": -980, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "96df6bc0-1219-44dc-9484-2d3f3dc684ae", + "width": 70, + "x": -1680, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "65c3dcd5-07c8-4612-b556-91695c0616ae", + "width": 70, + "x": -1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f5f3daf-c8d3-4161-bc2f-5a6466ce3d04", + "width": 70, + "x": -1680, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8e6d2c07-c514-465a-84cf-b7ef27b7aedc", + "width": 70, + "x": -1680, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a03f113f-45c6-4267-b7ec-8b6b5b99da0b", + "width": 70, + "x": -1680, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b8023473-e42c-408f-b42c-04c1f1c30715", + "width": 70, + "x": -1680, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a3f370c6-1b40-4441-b84a-37e3999b6ad6", + "width": 70, + "x": -980, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67ae9195-3ef6-4ab8-b3a9-3930c2f45218", + "width": 70, + "x": -1680, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2620af78-f634-4128-b040-faf6a008bab0", + "width": 70, + "x": -1680, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c5a84b28-cd51-4279-81ff-7aa86e898fd6", + "width": 70, + "x": -1680, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c5bdcafb-2946-4c35-a658-601fbd2a3ebb", + "width": 70, + "x": -1680, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46d3319e-cc7b-40d0-8dbb-5caaf0df5fba", + "width": 70, + "x": -1330, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "eda054ed-6522-4c12-9090-d55e15515e66", + "width": 70, + "x": -1400, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f7848992-06bc-4d17-a94f-3df415fa4cea", + "width": 70, + "x": -1470, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54fc988d-5ead-4580-91a5-6d13283a13f7", + "width": 70, + "x": -1540, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05429aae-bc4c-4b3c-b211-14f70557fe57", + "width": 70, + "x": -1050, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7d62f29a-2f23-4bec-90b9-d9d67f1018e3", + "width": 70, + "x": -1120, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9459ca97-10bc-415d-8fd8-0a518ede99f1", + "width": 70, + "x": -1190, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c00a0d0d-24a1-46ee-bcd5-b09aab3e3d5b", + "width": 70, + "x": -1260, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1d7758a8-7e7c-4b45-ad29-04f73e3e74d0", + "width": 70, + "x": -980, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f8e73de-35e1-4b86-b750-a39640aa9aba", + "width": 70, + "x": -980, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "01042663-7279-4bb3-b7d7-837773f0619f", + "width": 140, + "x": -1540, + "y": 1120, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45a62f6f-8e6f-489d-a3b6-634f9243391b", + "width": 70, + "x": -1680, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "62161171-9b48-4af0-a3ea-0e2329ac7b7b", + "width": 70, + "x": -1610, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2cb61418-8558-4cbf-bace-3cf6a8ff32d2", + "width": 70, + "x": -1470, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "093c978c-ddfb-4c52-a2cb-8204d6dd9ce0", + "width": 70, + "x": -1120, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "50ca2e52-35a7-44cf-8e34-3376943f14b4", + "width": 70, + "x": -1190, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fb3c7b2f-ee4b-4eab-a1c6-738df76fcf21", + "width": 70, + "x": -1050, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e62dcb54-b0d3-4b8b-a342-240fcb9acaed", + "width": 70, + "x": -1540, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b52c145b-7799-41af-821f-24b97407a2c6", + "width": 70, + "x": -1400, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ab62b35a-cfe0-4271-98b0-c890c4980f12", + "width": 70, + "x": -1330, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f7272c26-d997-4def-93cc-ab4d4af0c82b", + "width": 70, + "x": -1260, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "54946b72-97b0-435c-8dcf-68eea499c47e", + "width": 70, + "x": -1610, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "44ac5cdc-54ac-4f31-9695-ace3b2befe34", + "width": 70, + "x": -1610, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e361b2bf-305f-4953-a332-f187560e74d7", + "width": 70, + "x": -980, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67000d7b-f2e9-4d20-aa74-cc48d989a702", + "width": 70, + "x": -980, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1e305285-0611-4117-a70d-e4c1e9bc4292", + "width": 70, + "x": -980, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d107543c-2246-4845-8cda-72494659b918", + "width": 70, + "x": -980, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "7f9c1ae9-8eea-4c80-9924-dfa005df4bce", + "width": 140, + "x": -1540, + "y": 1330, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "4e9b931f-6a1f-4dc2-b548-c67a45510283", + "width": 140, + "x": -1540, + "y": 1610, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "6229d402-7d4b-4593-bbed-3bea4b617d21", + "width": 140, + "x": -1540, + "y": 1820, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "f2784c06-7b67-4745-8f7b-1ab44863161a", + "width": 140, + "x": -1540, + "y": 2170, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b94a7bb-2466-4808-a860-7b14e4c99d41", + "width": 70, + "x": -2730, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edf65729-0c29-4c5d-810e-e2c6d57d3ff5", + "width": 70, + "x": -2660, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90a919f3-565a-41e0-987a-11a88fa311ac", + "width": 70, + "x": -2730, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aad1298d-a7e2-4d46-9211-526d72199417", + "width": 70, + "x": -2660, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f7b05e70-c18b-4b26-8d6f-0e82a9b0262c", + "width": 70, + "x": -2590, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5af576c1-2c7d-4bd3-a985-030ab7ea9986", + "width": 70, + "x": -2520, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64afa7d1-885c-4c8d-9f11-da6e6035eb88", + "width": 70, + "x": -2590, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c1e60a-2f06-4804-ba57-bf3646fdef44", + "width": 70, + "x": -2520, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "93f3100e-3d6a-4e9e-8cab-00c25b3016a0", + "width": 70, + "x": -2450, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee621b18-467b-4862-8938-d5be34d0020c", + "width": 70, + "x": -2380, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13a688ee-7c28-43e6-98b0-80a79caa12fe", + "width": 70, + "x": -2450, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d469c486-f422-40bc-a51a-0a08c972880f", + "width": 70, + "x": -2380, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9237f578-59f8-4598-90cb-e9ea3d9f8670", + "width": 70, + "x": -2310, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6725b30b-40b4-4e5e-bbdb-e2f6ae5dcdeb", + "width": 70, + "x": -2310, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3c22fa9-9e95-4f9f-9d75-efbd4a0989fa", + "width": 70, + "x": -3500, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec9cf2c9-62f1-40c1-9c48-6f5cb8f322af", + "width": 70, + "x": -3430, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0696ac0-ca73-42a2-997d-597176a63a89", + "width": 70, + "x": -3500, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4066b374-9d2c-4423-80f0-ed0e6ff22bbd", + "width": 70, + "x": -3430, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acbd1131-f9d6-418f-a82e-57bfa155bf4d", + "width": 70, + "x": -3360, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b940f6f0-c6ab-4799-82e2-980c933b849a", + "width": 70, + "x": -3290, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ebc146db-a462-4eee-82f4-05e989545994", + "width": 70, + "x": -3360, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1fb9e2f5-1bca-44e1-8060-cb2aa63a9d1e", + "width": 70, + "x": -3290, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af8903d6-ab3e-4288-894c-69bcf7704eae", + "width": 70, + "x": -3220, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0be53380-31e0-4521-a422-1ffc28ceb353", + "width": 70, + "x": -2870, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4416537-0f76-4139-8872-aff95314df4b", + "width": 70, + "x": -3220, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "812fafdc-8e02-48a4-be61-7b24438cfabc", + "width": 70, + "x": -2870, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "453520ab-ec35-47d2-a28f-7c445b808add", + "width": 70, + "x": -2800, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2ca1292-fd41-420c-a69f-f8d466643b9c", + "width": 70, + "x": -2800, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1cf22557-ad74-4ca8-af59-49bf8d895d7e", + "width": 70, + "x": -3570, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2733b505-60e7-4231-b591-9c40f17e9048", + "width": 70, + "x": -3640, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ea3f622-d526-4694-a830-b4390eb2fd3e", + "width": 70, + "x": -3640, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecd42d79-74f7-446f-89d4-fa2f56f5b3fa", + "width": 70, + "x": -3570, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b4adf695-23af-4c5b-83cd-5b11f57ff583", + "width": 70, + "x": -3640, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2de3213b-aef6-4242-a925-9332ca99fc18", + "width": 70, + "x": -3570, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e73a3597-4101-4fb9-af22-ff0caf02b744", + "width": 70, + "x": -3570, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e75c66ba-3b01-4420-b6b3-fbcf156d3e67", + "width": 70, + "x": -3640, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0192531-bfdd-49c3-83c6-2833944d9d05", + "width": 70, + "x": -3640, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fabee7ae-fe78-40ca-8691-462739f60f84", + "width": 70, + "x": -3570, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "09a990a2-1c01-4a9b-9b35-489f8e65ce92", + "width": 70, + "x": -3570, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e2d94389-1c65-44bc-903f-411dc084f2fd", + "width": 70, + "x": -3640, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5c14133-06c2-450d-9cc5-5dc2eb8f0656", + "width": 70, + "x": -3640, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a62acd9f-2253-4e10-b87e-a97b3aa0308b", + "width": 70, + "x": -3570, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d8d040f-2eb6-43f9-b6a1-59ba754a8227", + "width": 70, + "x": -3640, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3a5b40c-e56a-4e30-8636-184b91922591", + "width": 70, + "x": -3570, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73ac0c56-af10-4ab9-87cb-4e2eb038a76e", + "width": 70, + "x": -3640, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80bee0cf-679c-4b56-a3dc-acd46d63b659", + "width": 70, + "x": -3570, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4f71c58-2a62-431b-a12e-b72af668d23f", + "width": 70, + "x": -3570, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f4482b7c-e06e-49b6-ba85-d2643ea517ac", + "width": 70, + "x": -3640, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dec484e1-9e1a-429d-b881-f28050357422", + "width": 70, + "x": -3640, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9176eabd-b427-4053-8fc7-d97d4c230498", + "width": 70, + "x": -3570, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d74c481-acbf-41ff-b668-625d1c76361b", + "width": 70, + "x": -3640, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "362fec4b-3892-4268-8689-b5b4125c6911", + "width": 70, + "x": -3570, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf11d2f5-1266-4faf-b6fe-da5ad87f14a4", + "width": 70, + "x": -3570, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdfd598c-d6ff-479c-91c3-3c0582207853", + "width": 70, + "x": -3640, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24d9e960-a756-4e95-93ad-4369c8d14d5d", + "width": 70, + "x": -3640, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edfbd61d-faf8-47a6-a311-46d375f62888", + "width": 70, + "x": -3570, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f843a8-2f1d-4445-9ba6-ed7cc9e8f685", + "width": 70, + "x": -3570, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee86d05d-8462-45a9-80b4-d9a89a550823", + "width": 70, + "x": -3640, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a2a8c42-a6a2-485d-ac1e-04f8886fc1c6", + "width": 70, + "x": -3640, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd71ae97-ca8e-498c-b821-bb4a91c8892b", + "width": 70, + "x": -3570, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47b62ff0-ab32-4926-b37f-a9605e81f489", + "width": 70, + "x": -3640, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "105cbfcb-a962-406a-ae26-952c80211615", + "width": 70, + "x": -3570, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86dbe9f1-ad16-497e-afd6-c0bc16e28aa1", + "width": 70, + "x": -3640, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52d948ce-bce9-493b-b2fa-6be90c0e02b9", + "width": 70, + "x": -3570, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7b88dfb1-e643-4b5f-87a8-b45b473af907", + "width": 70, + "x": -2870, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d7ce7ff-a342-4e70-92c0-79b5d68ac7cc", + "width": 70, + "x": -2800, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ff127ffd-7ff4-406d-beab-a83436bc0866", + "width": 70, + "x": -2800, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1aab6913-cc88-452c-8e56-54a4e00a7875", + "width": 70, + "x": -2870, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cee6bf75-5934-437c-8702-0798e57e788d", + "width": 70, + "x": -2870, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f556478e-c055-49c1-9823-b7e766284e06", + "width": 70, + "x": -2800, + "y": 3360, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38232c1e-2198-47d8-9c21-3a688346c09d", + "width": 70, + "x": -2800, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9453646-e9f9-4181-9717-008e1c97e1cb", + "width": 70, + "x": -2870, + "y": 3430, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "deddc524-70dd-4e14-882f-c23f89838aca", + "width": 70, + "x": -2870, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e132be1e-77a5-4335-a520-a51e1423b7b4", + "width": 70, + "x": -2800, + "y": 3500, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3759c0ed-cd57-4f89-a0c7-9b1ed8df6cc8", + "width": 70, + "x": -910, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "847f227f-34bf-418c-b8d6-e69c655c7f15", + "width": 70, + "x": -910, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "81d202ee-0b37-4403-8a40-7774347fb1f0", + "width": 70, + "x": -910, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27d8c146-7620-4152-81f4-81d9b9c58595", + "width": 70, + "x": -910, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f808ec5-bf1e-4740-b072-332cd2b73935", + "width": 70, + "x": -910, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97676745-182e-4c56-8d4b-1331aa007f16", + "width": 70, + "x": -910, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d6cad1ff-b2d0-42db-acad-6bb570ca67f2", + "width": 70, + "x": -910, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0d27da6d-010a-43c1-b9eb-34b801d7af3b", + "width": 70, + "x": 630, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07d8e19e-1ecd-42d7-a509-7e12b7fff0ba", + "width": 70, + "x": 490, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "867568f4-22df-48fd-bdc1-ead9a6100b2c", + "width": 70, + "x": 560, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d6ff924-a90a-4fc6-a8c4-eace97442a98", + "width": 70, + "x": 350, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd35aa13-920d-4249-9bd2-556a883a0dbc", + "width": 70, + "x": 420, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4dbfc7bd-35ea-47e6-9428-5d5acaf40785", + "width": 70, + "x": 210, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "48161ebf-7bfd-4f08-816e-e24a26ec041f", + "width": 70, + "x": 280, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46415850-067a-4300-9ec3-b382de33622b", + "width": 70, + "x": 140, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b1ecc8a8-5f01-4b38-a2f1-9d1c181e46a7", + "width": 70, + "x": 700, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4382c08-1a10-4dbd-8014-282080e877cb", + "width": 70, + "x": -350, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "34087f23-0f1e-4e3d-8d37-8d3dc211c15c", + "width": 70, + "x": -490, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f1072ca1-205c-4740-9f4a-fba874d43752", + "width": 70, + "x": -420, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1abf609b-dfb1-4c2f-93ed-0bf780c8acc7", + "width": 70, + "x": -630, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6bf50a9f-22cc-4a39-90a0-208a5a92809e", + "width": 70, + "x": -560, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "83f3497d-af9e-410d-a0a3-6b70a7c7e964", + "width": 70, + "x": -770, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b03ab825-2548-4f5b-ba96-b0766f645a7b", + "width": 70, + "x": -700, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2bd61b3b-146f-44a7-b043-2802977e5385", + "width": 70, + "x": -840, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b39de211-f728-4152-8ad0-a92a9465079c", + "width": 70, + "x": 0, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "40511db9-a397-4a3b-a34d-60c1abcfc1d5", + "width": 70, + "x": -140, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3001d7a1-69c2-49e9-aa32-97fb3a4687ea", + "width": 70, + "x": -70, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7dae7f99-2e03-4f52-bcc8-3020640f2fd5", + "width": 70, + "x": -280, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "42325149-659b-499a-8a2d-e0d96dcf3fac", + "width": 70, + "x": -210, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "74b8ca9d-ffd8-49cd-9e4f-fde8c3ca330c", + "width": 70, + "x": 70, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "depth": 1, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1c9b8337-d5fc-4b98-a401-761921c369f0", + "width": 70, + "x": 700, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9391fbf4-8d8f-4b59-a99c-a252d3c555be", + "width": 70, + "x": 700, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a9e8189f-8adc-4a62-a2ae-8a487fab41e7", + "width": 70, + "x": 700, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9468b431-220d-4dff-9a44-71b2f48b505e", + "width": 70, + "x": 630, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "899ea4c5-ffd9-4927-b781-378df1b99743", + "width": 70, + "x": 490, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cfe99a77-b6a7-4608-b95f-7ae631d26053", + "width": 70, + "x": 560, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d3203064-e8f5-47a8-bf36-7182dac45a1b", + "width": 70, + "x": 350, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "04aa7e1e-cd58-493a-83d9-2eba35e8798e", + "width": 70, + "x": 420, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f61a08ac-8d82-4fab-a4c5-96aa61cef191", + "width": 70, + "x": 210, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "32b1de0b-3c81-4f36-b328-b3c78feed6ef", + "width": 70, + "x": 280, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e3440ed6-7d70-4d88-93d1-e747d5a8aeee", + "width": 70, + "x": 140, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b5c86e63-a0dc-4e1d-ab09-ff5c542b9c07", + "width": 70, + "x": 0, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6978009f-37fd-4a78-a3c0-84e88b286e6d", + "width": 70, + "x": 70, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "153cc8c8-61fb-4440-b530-aea6fded2173", + "width": 70, + "x": -140, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7817943-5802-4803-a1a0-3ed8b055b98f", + "width": 70, + "x": -70, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b66b394f-158e-44ba-a465-a12f81892e15", + "width": 70, + "x": -280, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2cb271af-bd65-49b8-8789-11d9aceb2035", + "width": 70, + "x": -210, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f6ddc50-5667-467e-afb6-400c922ae154", + "width": 70, + "x": -420, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3ececfcc-dd31-4a75-a88b-6c42e6d0d080", + "width": 70, + "x": -350, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fde22dbd-b7d7-42f3-ba64-86f07a053ce5", + "width": 70, + "x": -490, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ed62dfb5-9a01-4509-af11-b690f611dad8", + "width": 70, + "x": -630, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "895872b8-9087-4a1e-9b23-2aa7f40c9751", + "width": 70, + "x": -560, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7a0cdedc-61f5-4462-9a01-9768b0c0aa1e", + "width": 70, + "x": -770, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6d3611e6-f307-4f8e-b80c-8dbe113db32d", + "width": 70, + "x": -700, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "58c11e20-d01c-4e93-b71d-bfc50369ac1a", + "width": 70, + "x": -840, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c62e0e8e-662f-4364-9997-f1de59c851c7", + "width": 70, + "x": -910, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "599ebcf9-2cfe-441c-bcbb-8340aff09f86", + "width": 70, + "x": -2030, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0deca073-8233-4154-8ba8-a35ff5febd4b", + "width": 70, + "x": -1960, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4c7057fe-534e-4b27-8e93-50bf60244da5", + "width": 70, + "x": -1960, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "116aa189-8376-433e-ba0d-040d949c2978", + "width": 70, + "x": -1960, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d2ec17a-9e6d-4557-a15e-42d3159f7dac", + "width": 70, + "x": -1960, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e711882b-a486-421b-aacc-6f8789a4a8fe", + "width": 70, + "x": -1960, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "491dd95b-2cd1-4df9-a9b5-3309b947a9d1", + "width": 70, + "x": -1960, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b21ed2e5-1b61-44ca-8e59-1f7d7f932fcc", + "width": 70, + "x": -1960, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "16193c84-0f49-4996-8def-91b0c81bf668", + "width": 70, + "x": -1960, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "43f26275-9b3a-4c89-b1ce-40906efacdb9", + "width": 70, + "x": -1960, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e329ffbe-2dda-4d99-b9b3-0807c2ac9c60", + "width": 70, + "x": -1960, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9646ac1b-2f53-4d45-92ec-ab6afb2f3585", + "width": 70, + "x": -1960, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "50324816-058b-4c08-bb33-657f6eedefa9", + "width": 70, + "x": -1960, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "61849e6d-898f-4868-a29b-fffa7d6926a8", + "width": 70, + "x": -1960, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b42c0a5e-c829-441e-a2e5-3378a0aa866b", + "width": 70, + "x": -1960, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3cbc653a-d271-4c41-9f3a-93fe0c862e66", + "width": 70, + "x": -1960, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b9b4bfa5-d698-45e0-a518-f7dc5dc09404", + "width": 70, + "x": -1960, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "10254315-8643-4422-a76f-d35470d4d9a3", + "width": 70, + "x": -1960, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "07ee95a6-ca3b-4bef-88e8-2ea23db069b5", + "width": 70, + "x": -1960, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 140, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "81546174-88bc-475a-8547-ce5b89ba9412", + "width": 140, + "x": 560, + "y": 0, + "zOrder": 118, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "87df3078-0b84-4b8b-877a-f5d1693b797c", + "width": 140, + "x": 420, + "y": 0, + "zOrder": 119, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 30, + "layer": "", + "name": "sports_equipments_movable", + "persistentUuid": "6948a31e-81b4-4f3a-9a1c-8440d0a084dd", + "width": 30, + "x": -140, + "y": 70, + "zOrder": 100, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "a99a4ec2-138d-4e94-9c27-c4e417bb0bd9", + "width": 0, + "x": 280, + "y": 560, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "863a46f7-41e7-473e-8b57-f537cc46a4f6", + "width": 0, + "x": -1470, + "y": 1190, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "c760740e-c3b5-4ca5-9652-f8d5cfa5b8d0", + "width": 0, + "x": -1470, + "y": 1820, + "zOrder": 120, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "e3012678-1b46-402f-a141-3532c55a7d0e", + "width": 0, + "x": -490, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "b6e96a1f-d06e-4ab1-b49f-49dc34a24024", + "width": 0, + "x": -2520, + "y": 1540, + "zOrder": 12, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "4393ace7-fdcd-4410-9789-21f0bd2e30f4", + "width": 140, + "x": -2380, + "y": 1890, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 210, + "layer": "", + "name": "roof_tops", + "persistentUuid": "5c6123ae-d57b-4022-a5c7-db0ee6e014b9", + "width": 140, + "x": -2380, + "y": 1893, + "zOrder": 13, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "roof_tops", + "persistentUuid": "087bf72d-7e88-49ed-bed7-9b7d6b40d901", + "width": 0, + "x": -2520, + "y": 910, + "zOrder": 12, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "659dbba9-0e13-4576-b0cf-f2ac764b95c1", + "width": 70, + "x": -2030, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1dc9fa8-2e2b-47e6-8f0b-11d1963eb546", + "width": 70, + "x": -2030, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fa51ad7d-bd0d-4b5c-91aa-f33f5566aced", + "width": 70, + "x": -1960, + "y": 350, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun3", + "persistentUuid": "649553fa-c15a-47bc-82bc-2b7b8687672b", + "width": 0, + "x": 70, + "y": 1540, + "zOrder": 121, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "flame_thrower_fire_collision", + "persistentUuid": "ded64a81-59c3-4fd0-8f25-30f0b69e5472", + "width": 0, + "x": -247, + "y": 1324, + "zOrder": 122, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e62db15-084e-46a8-8161-d98223571269", + "width": 70, + "x": -2380, + "y": 2030, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "012e501d-e7ad-4712-98c2-ed23bf407820", + "width": 70, + "x": -2380, + "y": 2100, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56b2e922-825f-4028-90cd-0fdede16e7f9", + "width": 70, + "x": -2310, + "y": 2030, + "zOrder": 11, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d214726-2e20-40cf-8145-8f2bea86f781", + "width": 70, + "x": -2380, + "y": 2240, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e80bade-9a39-46a4-912c-a3e669fec088", + "width": 70, + "x": -2310, + "y": 2240, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8760281f-defc-4fe1-aa63-53c9b2f31db1", + "width": 70, + "x": -2310, + "y": 2100, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb118d64-241e-49d6-b4eb-353a1c21ce43", + "width": 70, + "x": -2310, + "y": 2170, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f06eb3c5-304a-4f6f-a7d0-2c3a78b228da", + "width": 70, + "x": -2380, + "y": 2170, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b7f165c4-0deb-47ec-8b1e-aa33c4293820", + "width": 70, + "x": -2380, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "eb1147d6-eb27-4ef2-b729-1e6a71cd126e", + "width": 70, + "x": -2030, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "084bd44c-1298-47a8-808d-87aca93d6bdc", + "width": 70, + "x": -2100, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3052048b-8e85-4861-b50f-e252b50ef953", + "width": 70, + "x": -2310, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f0ec7dde-0c58-4529-8814-0e7c65daec57", + "width": 70, + "x": -2240, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c47f978-eaa1-4d22-b840-e206bb15c050", + "width": 70, + "x": -2170, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fa2c8456-3482-4d4f-860e-e275622d149f", + "width": 70, + "x": -1960, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "888b26c8-a289-4478-8458-8cc26dcbefcf", + "width": 70, + "x": -2660, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "52a4d903-f86d-46ee-88c3-8c5e084970b5", + "width": 70, + "x": -2660, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b3cb4875-4a29-43ce-be55-3da9a8e53832", + "width": 70, + "x": -2660, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9881fa0f-6c9c-444e-aa3c-4492b7d08a80", + "width": 70, + "x": -2660, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8fb1424a-08b6-496e-9dfb-4399819bfac4", + "width": 70, + "x": -2660, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3890d9d9-c585-4c62-aedd-fdb8b0653d9d", + "width": 70, + "x": -2660, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d37f33b1-33dc-473c-8092-f4c3363da026", + "width": 70, + "x": -2660, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "34515fcb-798d-404c-8e23-8ff661c81f74", + "width": 70, + "x": -2660, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9a72125c-0fac-4060-b2ea-f8ba9efb1ea9", + "width": 70, + "x": -2660, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1ae5ee2e-6598-4908-8e2a-b3bb54b5dc35", + "width": 70, + "x": -2660, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f700037d-5650-4b41-b687-e54171125b6e", + "width": 70, + "x": -2660, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd32f594-af16-46c3-a4d8-ad2f75235c2f", + "width": 70, + "x": -2660, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f56a1e6-0fb3-46f7-8e07-721d317c7534", + "width": 70, + "x": -2660, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56c4014d-4890-4bed-9b13-9299e2b9ab57", + "width": 70, + "x": -2660, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "10484b73-3d8d-44c4-b698-ebd330a26e32", + "width": 70, + "x": -2450, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7ae0a165-4145-4bd4-9da7-d6e4e175eb42", + "width": 70, + "x": -2520, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4f001428-89f3-4eec-a642-6dd55b8600bd", + "width": 70, + "x": -2590, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0c96b1bb-2993-42a3-aa58-150e1569798d", + "width": 70, + "x": -2660, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f0023c4-ef68-4358-8589-ae38d6ef1944", + "width": 70, + "x": -2660, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fe3d6aa3-6005-4568-aa8b-6a12fd251140", + "width": 70, + "x": -2660, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "36995062-6b1f-4dc7-a32e-c81f04248360", + "width": 70, + "x": -2660, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7a50e957-2778-446e-a6c3-94929d02cb46", + "width": 70, + "x": -2660, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "67837de1-f1ac-43a9-8d9b-fee99f31b5c9", + "width": 70, + "x": -2660, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a0e998e6-1b69-4321-a028-f884447b19ea", + "width": 70, + "x": -2660, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "808b5459-76e1-4463-93b1-439ebb5564ce", + "width": 70, + "x": -2660, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f2a55148-424a-4840-8c7d-04e9bce4f78e", + "width": 70, + "x": -2660, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "78c1cace-6a2f-40f5-aaab-f6f401a9c132", + "width": 70, + "x": -2660, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c135bb0c-30de-4872-9e2f-35e25fb127f0", + "width": 70, + "x": -2660, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1bd7cddc-ce3a-4c47-9e98-faf17ad6c354", + "width": 70, + "x": -2660, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3ebfdf6b-ee64-4783-b30c-f3a493ec99b0", + "width": 70, + "x": -2660, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f35751fc-3c1c-4739-ba50-da2a57d86ea1", + "width": 70, + "x": -2660, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "21a88a9f-05f7-4e39-8803-947fadfb3839", + "width": 70, + "x": -2590, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9e513a7d-2786-422c-8eb5-72ce2fe4ca37", + "width": 70, + "x": -2520, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ac9fc40e-aa9b-4d9a-b61a-4b65b7e24800", + "width": 70, + "x": -2450, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a5038e6f-0852-42d8-8cdc-558e7cd25239", + "width": 70, + "x": -2380, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ac119b0c-9c9c-49e9-8c26-71fdd2ab8f00", + "width": 70, + "x": -2310, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "70be2bc3-3c03-456f-aad4-c08bb4e8c3bd", + "width": 70, + "x": -2240, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1920a97f-b817-4e74-ba95-db9d4d4f0309", + "width": 70, + "x": -2170, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bd069cfa-41fe-4eef-ac63-2808b2f86309", + "width": 70, + "x": -2100, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0ec0ac9f-c050-4ea4-832b-852587de8442", + "width": 70, + "x": -2030, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7940e251-2ac9-42af-9e41-6ff402dc0ff8", + "width": 70, + "x": -2590, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a31dbcda-344f-4c95-a80d-db7f676ba0b5", + "width": 70, + "x": -2100, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "13e21123-306a-4c9f-9a76-48c647132e1b", + "width": 70, + "x": -2520, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f8d9c38-b54c-4e3f-97ee-0425d7cf18e7", + "width": 70, + "x": -2170, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4a4627fb-1c7e-4be1-bc64-57ea73660d78", + "width": 70, + "x": -2240, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "85c1ccc2-d79b-48bf-b3ac-608e86ce95b4", + "width": 70, + "x": -2450, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea73cd8a-2f47-4a0f-9f34-a1caebea325b", + "width": 70, + "x": -2100, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8bcdc884-58dc-4aec-94b6-d7db214e4fea", + "width": 70, + "x": -2030, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1860d70d-a294-4ffa-8e59-6577b4a0cfa4", + "width": 70, + "x": -2100, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2240, + "layer": "", + "name": "road", + "persistentUuid": "7643c5ec-fd1e-4f95-a58d-4e907e0b7884", + "width": 70, + "x": -2870, + "y": 280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "df4353ef-adb4-4f69-8cd6-e8412d998956", + "width": 1820, + "x": -2870, + "y": 210, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "27018dd8-c06d-4040-a16c-e05d5f6dfe9b", + "width": 210, + "x": -1820, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d2bdab0-0aab-4040-a578-f3eccafaee40", + "width": 70, + "x": -3010, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f9fbbe9-a1b3-4096-b8ff-b4f1331740e9", + "width": 70, + "x": -3010, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bbdd9ea2-3ddf-42e7-9de6-207f2ec579f3", + "width": 70, + "x": -3010, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "298aee83-aa29-41c1-b284-36dd965c4c5a", + "width": 70, + "x": -3010, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc90e793-2e56-4022-969b-7465ce8c17b3", + "width": 70, + "x": -3010, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0fea6135-a042-49b5-b3b9-d10567fae87c", + "width": 70, + "x": -3010, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "400ea3be-c9f5-4d16-831a-189a3618a564", + "width": 70, + "x": -3010, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13c2f69-9ff4-49e7-80b4-7275ca3e5b97", + "width": 70, + "x": -3010, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a056cc1c-0749-4fd1-b3b8-0505dfbe584d", + "width": 70, + "x": -3010, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bbc79133-ab82-4f7f-ac5c-5fd9f8cc8a4d", + "width": 70, + "x": -3010, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3880452-b974-4033-9d23-48e5b46c5439", + "width": 70, + "x": -3010, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b13fcc4d-14ea-408a-a5c8-7ef2d80d9144", + "width": 70, + "x": -3010, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3efc7c00-3405-4012-afaa-121ad6c60f20", + "width": 70, + "x": -3010, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e456f3c-61cf-410f-b3d0-176378f9e8a4", + "width": 70, + "x": -3010, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d36f8a0-a88a-4752-9c43-d4dbfd3417bd", + "width": 70, + "x": -3010, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ddb24b2a-6afb-4907-ab48-f4a1e16617c9", + "width": 70, + "x": -3010, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00d0d42b-e921-49e7-87cd-62f47aae2125", + "width": 70, + "x": -3010, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ca10a7df-d8f6-4c40-b039-429f191bd075", + "width": 70, + "x": -3010, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "beb8ab98-2e21-4806-a2e2-c03d3c4227f3", + "width": 70, + "x": -3010, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4d250a55-e245-4459-8107-5d3986e0046d", + "width": 70, + "x": -3010, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf634a7d-2238-472f-b9fc-24192ecba8eb", + "width": 70, + "x": -3010, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2135efbb-3ff2-4b4f-86e4-9d8d273dcd92", + "width": 70, + "x": -2730, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "917ba136-802f-42dd-96df-8555846d6746", + "width": 70, + "x": -2730, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58be6a54-1fce-4fa0-b269-8c4a8459fb2c", + "width": 70, + "x": -2730, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04824d44-5e7e-4c1e-bd84-1f84ded096dc", + "width": 70, + "x": -2730, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a61bbb90-e6c3-45e3-b4a9-126581612941", + "width": 70, + "x": -2730, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ae57727-7ad7-47f8-b66f-561bc424b1a1", + "width": 70, + "x": -2730, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63574270-ad3d-47ea-8890-9a605e608140", + "width": 70, + "x": -2730, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13863b1d-0f6d-4ab7-bf2f-32d30768ab4b", + "width": 70, + "x": -2730, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "490da7ae-5d8d-4a50-9443-dc02a22e4e98", + "width": 70, + "x": -2730, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7921c1cf-21ef-4288-b077-12cb5539c439", + "width": 70, + "x": -2730, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea7735d9-b66b-4954-8c9c-f7f07c962948", + "width": 70, + "x": -2730, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7a373002-5ca0-474e-9a04-032f9db037e9", + "width": 70, + "x": -2730, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07908b75-017d-4ce1-af70-48d640e2a478", + "width": 70, + "x": -2730, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57cb117a-df84-44da-8731-c042f45a6490", + "width": 70, + "x": -2730, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f91fac4d-5a62-42a2-bc74-e8d64194d309", + "width": 70, + "x": -2730, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "36d56d14-ed92-4196-85a0-4e5532fb62e4", + "width": 70, + "x": -2730, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57d6c1cb-833f-4246-83b5-ef7e6610c25f", + "width": 70, + "x": -2730, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "13f224d9-78d2-48db-bd31-e8cefcc03028", + "width": 70, + "x": -2730, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "933ff070-8897-408a-adc1-bbcbc3b600f2", + "width": 70, + "x": -2730, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "137f22dc-17a2-407a-b5d8-20bea3926c73", + "width": 70, + "x": -2730, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "975077f3-ff2e-4c73-88cf-debb3dbd6d20", + "width": 70, + "x": -2730, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccb889c6-2ff3-47c8-ae9b-c7e8a7a328c3", + "width": 70, + "x": -3010, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c9dbe65-cc70-47d2-bc87-64ab31f6a557", + "width": 70, + "x": -3010, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07918f53-4d77-470f-a3ff-c55e35969ddf", + "width": 70, + "x": -3010, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eba076f0-8a59-4987-97f6-64503aff4c32", + "width": 70, + "x": -3010, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "069a6906-c823-4bc6-884e-1c287bc3c355", + "width": 70, + "x": -3010, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5d42d72-2fe7-4fa9-bd7a-575cb34bc245", + "width": 70, + "x": -3010, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e01fc081-6338-443d-b83f-b1918decff28", + "width": 70, + "x": -3010, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "088fc81b-0a4c-4d63-9c36-cbf994fa4f0d", + "width": 70, + "x": -3010, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2b12737d-fcd3-4235-b1f6-0f93ff5f00d9", + "width": 70, + "x": -3010, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1445b8d0-9c5e-4cab-a4b5-e3bbe6564522", + "width": 70, + "x": -3010, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f1592fc-6963-422e-afd8-83efdb29387e", + "width": 70, + "x": -3010, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb5a14e8-9289-4a0b-ad5f-3f1d3927f854", + "width": 70, + "x": -2730, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9a60f26-8f25-41e7-9477-97d5a44eca84", + "width": 70, + "x": -2730, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ca227a84-398a-4c14-9ecd-5932a9e1bb13", + "width": 70, + "x": -2730, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "594be69c-f64c-43c7-8704-dae7b442d232", + "width": 70, + "x": -2730, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d9178ec-b4d7-4865-af06-50d1e54647cd", + "width": 70, + "x": -2730, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4d3aa96-b549-446b-adb2-fba5830a5546", + "width": 70, + "x": -2730, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06d94f98-2888-4d35-91a5-c86c79de8552", + "width": 70, + "x": -2730, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d8ecbf27-b11e-4b7e-a2f4-b1ddbb7b3c9e", + "width": 70, + "x": -2170, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2cf807ca-fa2d-4142-8bbf-fde022b5931c", + "width": 70, + "x": -2100, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0a7a609-3505-41f4-bfa1-4d034c7bed88", + "width": 70, + "x": -2030, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7722b38d-b4e0-45b2-b754-e95eefa5211a", + "width": 70, + "x": -2520, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77e6771e-5d29-4af3-b1a5-f7da2c1c7456", + "width": 70, + "x": -2450, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59626173-0c47-4dc9-ae0c-94dd837aa2f1", + "width": 70, + "x": -2380, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48552b07-00ae-4031-911f-a31fc0e209e6", + "width": 70, + "x": -2310, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9dc2448-69cb-4896-8643-f2a4088c849c", + "width": 70, + "x": -2240, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89ef20df-7820-4195-bd84-5727cdea42ac", + "width": 70, + "x": -2590, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb97c581-bfe6-4c6c-9c41-b5bd93717ce4", + "width": 70, + "x": -2660, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f8ee71d-02b9-4c73-a5f7-6a73a3f671c7", + "width": 70, + "x": -2450, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "204a5460-1af4-4aa3-9bea-9f345fb88a0f", + "width": 70, + "x": -2380, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2e02689-6114-4f25-8089-2046639c7ea0", + "width": 70, + "x": -2310, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9e16c803-b080-4426-aaed-7a29676f27f2", + "width": 70, + "x": -2800, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcdd2e8d-0d9d-40ad-bbb0-3e1c596f8d1c", + "width": 70, + "x": -2730, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e42455c6-4a6f-44a3-bce7-97994cdb3c36", + "width": 70, + "x": -2660, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da5cd632-50b4-43b5-bcdb-b93aab669a8d", + "width": 70, + "x": -2590, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e09064d7-c321-4fe6-a409-7a5e21ac1db4", + "width": 70, + "x": -2520, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c94f3e7-ff51-4109-8e82-8ac9cf420b7f", + "width": 70, + "x": -2870, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "664f612f-369d-4658-a411-d17905a68dbd", + "width": 70, + "x": -2940, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "690a5d8e-be20-49e9-86d0-8718e2e4e4c3", + "width": 70, + "x": -1750, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "111952a3-dba5-4023-b29a-85d08d4da119", + "width": 70, + "x": -1680, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e917e69e-3403-4baa-9eca-b149ebe58d04", + "width": 70, + "x": -1610, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e60fe4d3-59e0-4820-9cd5-e7f461cd5dd3", + "width": 70, + "x": -2100, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1789944e-4e68-4b63-8bb0-851caecb6e9e", + "width": 70, + "x": -2030, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e68ef6d-6f18-4ac5-879b-8f8d9ff523ec", + "width": 70, + "x": -1960, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6d44bd9-fb48-4c9f-9a8b-ff6097a73181", + "width": 70, + "x": -1890, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03e98cf9-0855-490c-8463-885cda790301", + "width": 70, + "x": -1820, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c19904a7-d8a5-4a63-a5f1-e97007a603ef", + "width": 70, + "x": -2170, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d0be717e-5fcb-43a5-b3e9-564a16e16922", + "width": 70, + "x": -2240, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bfc734ec-c4c4-4232-8a2d-db7a098d8c70", + "width": 70, + "x": -1050, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b97e5a3f-0693-4a64-af35-544fc6a626ef", + "width": 70, + "x": -980, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb7f0120-df97-41ed-94a5-3997df023e2e", + "width": 70, + "x": -1400, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f9558b2-a0dc-4def-b030-4ce17d3f5f40", + "width": 70, + "x": -1330, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d64fd009-e8e7-4e99-95cb-23f72f35246c", + "width": 70, + "x": -1260, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87185c76-32dd-432d-b39a-abcb1e0f03a4", + "width": 70, + "x": -1190, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91619b0d-70ba-4583-99ed-52e5534f787f", + "width": 70, + "x": -1120, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69543e12-2899-410e-949b-8a470eaab65d", + "width": 70, + "x": -1470, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "67fe7338-1dea-4c33-a00b-e8f90dfdd9a2", + "width": 70, + "x": -1540, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b45c1b5b-0593-40d9-adc7-084f6b18f280", + "width": 70, + "x": -1960, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "752451cc-e7ee-4c67-b2e4-73e95477cb97", + "width": 70, + "x": -980, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e61e1e6-29ef-42e1-b622-04c081474831", + "width": 70, + "x": -980, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3db9ba3d-f1ed-49df-b749-6aa028bbf17b", + "width": 70, + "x": -980, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc680692-b42e-44d2-a135-04668d3fb39b", + "width": 70, + "x": -980, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8bfd743a-e005-418f-bbfe-129e6926818d", + "width": 70, + "x": -980, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "950391d3-c65c-4ea9-89c4-79f8686d90b3", + "width": 70, + "x": -980, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f423859-42e3-4363-8a41-3b8fc9549ddc", + "width": 70, + "x": -980, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64b5b0de-87a4-43b5-a635-64ed83443729", + "width": 70, + "x": -980, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e563cb3-daa2-4a9a-850e-053699e0b36c", + "width": 70, + "x": -980, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dda0da1a-81b3-4d0a-bdf9-18624bd8050c", + "width": 70, + "x": -980, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "872ff37f-3455-4044-98eb-0dcfc01f2d88", + "width": 70, + "x": -980, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f96d63b4-4105-46f6-82d5-3fbd2e91e33d", + "width": 70, + "x": -1190, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28dbceec-9149-4941-808c-84f225611e4b", + "width": 70, + "x": -1120, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0cdf068-1d0e-4a46-8a8c-f12819703564", + "width": 70, + "x": -1050, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eaa9d83d-0e3b-4f26-b523-9999eba9732b", + "width": 70, + "x": -1400, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "143bd8df-8a18-4d9a-ac02-04693e168a09", + "width": 70, + "x": -1330, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24defe83-1f3e-4ccb-bca6-4ae6bd293e5a", + "width": 70, + "x": -1260, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1dc1585d-1d32-42cc-bfef-ebb4cc805e11", + "width": 70, + "x": -1680, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f93efe23-5ba4-4720-ac13-84ae9367df9b", + "width": 70, + "x": -1610, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e685d635-3edd-49ec-940d-9dad035b7ea5", + "width": 70, + "x": -1540, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a960139d-daa7-4a0b-8f7b-9c2a4bbf8dda", + "width": 70, + "x": -1470, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "depth": 1, + "height": 564, + "layer": "", + "name": "ground_1", + "persistentUuid": "fa1a4a5e-9b00-407e-b0dd-21ab489e513b", + "width": 1680, + "x": -910, + "y": -214, + "zOrder": 4, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "3238639a-5a90-47cd-9db1-356fb462525c", + "width": 0, + "x": -840, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "389124ee-f8c8-46ed-b50a-59a370e84049", + "width": 0, + "x": 490, + "y": -70, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "3b064f58-b1f8-4106-80d3-f6a9f9e2311e", + "width": 0, + "x": -280, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ground_elements", + "persistentUuid": "53e4866c-5c86-4519-b8f1-8ce042a92e84", + "width": 0, + "x": -140, + "y": -70, + "zOrder": 5, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "016c5dc1-dfbb-4cb4-b9e6-8a94f432d5ce", + "width": 140, + "x": -910, + "y": 0, + "zOrder": 118, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 140, + "layer": "", + "name": "sports_equipments", + "persistentUuid": "aacbefe4-00b0-4e91-a270-f33a3ce872b0", + "width": 140, + "x": -770, + "y": 0, + "zOrder": 119, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6f511e5-ec75-430e-8dc7-e5480ba92de3", + "width": 70, + "x": -2100, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad8b84a6-f2c5-43f8-930d-6cabbacc97a2", + "width": 70, + "x": -2100, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7086c92-41c6-49d9-9a3b-86b5f0e58047", + "width": 70, + "x": -2380, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0e3433c-8897-4a3f-a28c-5ebc3d44931a", + "width": 70, + "x": -2450, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4931c46b-7bb7-42ef-b21d-2a457c4c14fd", + "width": 70, + "x": -2170, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a22bfe2f-70f8-4917-8dea-7b25fd4b9e5d", + "width": 70, + "x": -2170, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "46e5a417-bbc6-442e-8173-273350f33891", + "width": 70, + "x": -2240, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26fa9c29-b464-412a-bec4-7b54e302c493", + "width": 70, + "x": -2310, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc0f41d8-4905-4520-8805-5327f1d55f87", + "width": 70, + "x": -2380, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97a2861a-402d-4922-8a57-888aed48bbdb", + "width": 70, + "x": -2450, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcf9139d-7e1a-47cb-87ce-55e659c499d0", + "width": 70, + "x": -2100, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a25a4f77-e23b-4aea-892b-bbe32801d225", + "width": 70, + "x": -2240, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90e24237-e79e-416d-a475-4b590fe6b1fe", + "width": 70, + "x": -2310, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "81325cef-e28a-4f24-b8fd-7601e5cdada5", + "width": 70, + "x": -2170, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f292c346-d049-4f07-9253-2f0d46073962", + "width": 70, + "x": -2240, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18c8b9f6-ca20-4f78-b21f-d22c55a019fe", + "width": 70, + "x": -2310, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "88ae2d9b-8b9f-4dc6-ba35-8cdb739fbcfd", + "width": 70, + "x": -2380, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4eb279f9-169e-404b-b71b-d8a4e9b580d2", + "width": 70, + "x": -2450, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3a83cc56-a2f5-42ae-b813-d0982e433441", + "width": 70, + "x": -2450, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4f47a88b-9d19-45f0-b666-8127d19132ed", + "width": 70, + "x": -2380, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "710c3e3b-ddee-4fb4-9b97-afefdd99cfb2", + "width": 70, + "x": -2310, + "y": 770, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21be47de-6f6f-41fe-9fc3-fcbb7e2577f7", + "width": 70, + "x": -2380, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08ea7bc3-f86c-4c17-8fba-e67fbf4cf88f", + "width": 70, + "x": -2450, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03524ead-e995-4ef3-b3ef-7098e8cc80ac", + "width": 70, + "x": -2310, + "y": 840, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5aa0f51f-3087-4bce-9cbc-3b1b9a505286", + "width": 70, + "x": -1610, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "ac4d3bfa-721d-4b2b-a1df-b8e747521dd5", + "width": 210, + "x": -1540, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 490, + "layer": "", + "name": "road", + "persistentUuid": "e4198839-21d5-4a55-8d0c-24d626c51a6f", + "width": 210, + "x": -1260, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7665efe9-3900-4bff-83e2-1afb2136129b", + "width": 70, + "x": -1610, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d5ad349a-53e6-44a4-a031-518762d05217", + "width": 70, + "x": -1610, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "56e56a03-531d-4377-9469-c9a74abf8374", + "width": 70, + "x": -1610, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3c27623b-2745-42c1-a517-4bd5014c38f7", + "width": 70, + "x": -1610, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e28889ab-d638-4f60-9966-a3a461b4897b", + "width": 70, + "x": -1330, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1e47f74a-ddcb-4a71-91cd-f03dd3ca195f", + "width": 70, + "x": -1330, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "902c2248-c65f-4d40-99fb-7f5d46938e97", + "width": 70, + "x": -1330, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "10574c93-662d-449b-9954-e9c2da777329", + "width": 70, + "x": -1330, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "95b64283-7324-4dc0-acae-b957e947ed48", + "width": 70, + "x": -1330, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "768d92ae-7e0a-4772-9a17-52091255d1af", + "width": 70, + "x": -1330, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "road", + "persistentUuid": "d3986916-c449-4403-8102-92d4ff716e71", + "width": 70, + "x": -1610, + "y": 350, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e2be6574-3fc4-4db5-a69a-e363aedfe05b", + "width": 70, + "x": -1050, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f511cb4c-0d75-4e56-8145-e4d6624599d4", + "width": 70, + "x": -1050, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "16fbf24d-7b2c-4221-9fbd-dc5cd2fcf6ed", + "width": 70, + "x": -1050, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "69542849-c4e5-45c3-8a98-1a5bd1931c29", + "width": 70, + "x": -1050, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e05d9ed6-5e30-4f51-9499-10f398034088", + "width": 70, + "x": -1050, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a318be3c-5967-48d6-a4f1-6891bf2a6fca", + "width": 70, + "x": -1050, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "79d71a22-576d-4daf-b119-3b0f4565f9c5", + "width": 70, + "x": -1050, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b0c38fe4-585e-4cc2-bbf6-ea2e475fc053", + "width": 70, + "x": -1050, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "38d33e24-827d-4fee-bd8d-da4a3d994726", + "width": 70, + "x": -1050, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1afec93-59ea-40f5-ad1e-0dcaae15098d", + "width": 70, + "x": -1050, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a1349dba-5778-431c-ab8d-14143b9ff07b", + "width": 70, + "x": -2870, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f9230c44-4ff1-4211-987e-0c78ade19740", + "width": 70, + "x": -2800, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b6edcff7-8c96-4550-b534-9c0f9d3b937d", + "width": 70, + "x": -2730, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f55d626f-ec98-4f26-b8c0-504c3bb5d2aa", + "width": 70, + "x": -2660, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b761756e-c199-4d5f-93a5-25ed6d6b1ac0", + "width": 70, + "x": -2590, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0102b5d4-c650-4851-aef8-26c130c65365", + "width": 70, + "x": -2520, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ec99a3c7-fd2e-42d9-bd0f-4d23c7e50b16", + "width": 70, + "x": -2450, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "623cbe55-b5af-41df-ba7e-5969fa9b2c89", + "width": 70, + "x": -2380, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "313d4d65-0336-489c-9ada-77bca1e9941a", + "width": 70, + "x": -2310, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "58d1eec7-67c9-426b-bcef-8460c184fdf8", + "width": 70, + "x": -2240, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1b19b6ac-804c-4620-ac4b-5c7620bcc702", + "width": 70, + "x": -2170, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f1dc4b7c-6a6b-44ec-baec-a5034983ddfc", + "width": 70, + "x": -2100, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "29f0b249-cf89-4c89-abdb-8c0cc89c8458", + "width": 70, + "x": -2030, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa2fbc75-aede-435f-b15c-c948155c909a", + "width": 70, + "x": -1960, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7ab41b88-6332-480a-a517-dbc9641b2895", + "width": 70, + "x": -1890, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f8e1ff4e-4d07-4b40-9c7e-f9d4a428aacb", + "width": 70, + "x": -1820, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dcee2fe4-d793-4862-bb71-ee457cbb5a2e", + "width": 70, + "x": -1750, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "408df7c4-b553-4cbb-a4c3-009ad30223b9", + "width": 70, + "x": -1680, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "88d0c89c-0f7b-44ce-a96d-9155fd95c7a4", + "width": 70, + "x": -1610, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2afb88c9-fa0f-4bbb-97f7-ac5e07cc4f21", + "width": 70, + "x": -1540, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b60b11e0-4232-4d7d-8073-8f40ebb8864f", + "width": 70, + "x": -1470, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "960f96c3-704a-4866-b496-0a0bd345779b", + "width": 70, + "x": -1400, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6d5c810e-ca53-47ed-83a0-3b69db556ffb", + "width": 70, + "x": -1330, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a86752c4-6d74-4663-95c4-d1e8490b2029", + "width": 70, + "x": -1260, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1c1d617c-f800-46c9-8454-55915fa4dd85", + "width": 70, + "x": -1190, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8b8d66eb-c36e-4092-b5a9-099d554b9432", + "width": 70, + "x": -1120, + "y": 140, + "zOrder": 3, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51e87c25-6920-44c1-8f85-9a56863bf4d9", + "width": 70, + "x": -1050, + "y": 140, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b29e6493-e226-4b39-825f-1a766bd74e3b", + "width": 70, + "x": -2940, + "y": 140, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d06dffbc-aa56-407b-9417-f6b1269faf62", + "width": 70, + "x": -2940, + "y": 210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fe3e57ed-f73a-43ad-9363-c1ffe2954f68", + "width": 70, + "x": -2940, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "52d84a33-93f4-4ba1-9491-1dd7e363e560", + "width": 70, + "x": -2940, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "355ee835-5884-4ad0-b76d-d3316eec041b", + "width": 70, + "x": -2940, + "y": 420, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "01865da9-0e9b-4dc1-9e43-11a9dcc167fb", + "width": 70, + "x": -2940, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e304f2e8-5a98-4530-827a-3b4a4836c0d2", + "width": 70, + "x": -2940, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7529a509-2833-4781-9d07-228d64e502f4", + "width": 70, + "x": -2940, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ba49d35d-fe41-4b37-bdee-b5afcb168616", + "width": 70, + "x": -2940, + "y": 700, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "44673015-9170-4415-abc8-0ba0977ee507", + "width": 70, + "x": -2940, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b54f8443-831b-42e1-889b-d07cdde1982f", + "width": 70, + "x": -2940, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a369e220-5bfa-492f-9417-0ec18937a6cc", + "width": 70, + "x": -2940, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ff2d621-c1e6-4376-af8a-609837d8bcb7", + "width": 70, + "x": -2940, + "y": 980, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f55018bc-3b09-4b60-af72-0d8ba0fa0fcb", + "width": 70, + "x": -2940, + "y": 1050, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c6ce0f7a-f0e9-4d88-9908-ff65004b9c12", + "width": 70, + "x": -2940, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7f29522d-b120-4002-abec-fe23c0f5a9c7", + "width": 70, + "x": -2940, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "28e3099c-48fd-43ef-9a10-3310f640023b", + "width": 70, + "x": -2940, + "y": 1260, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "66a166ea-15c2-4640-a08a-4defc076189b", + "width": 70, + "x": -2940, + "y": 1330, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1f667d95-9938-49ec-98ff-13e667dada16", + "width": 70, + "x": -2940, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4d8b9dca-145a-4127-8fa3-f7ddf08a2613", + "width": 70, + "x": -2940, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b4965ed2-6ee5-4f0e-821b-e5e2288df918", + "width": 70, + "x": -2940, + "y": 1540, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "15d68820-bb00-44f3-b486-cae072ccb836", + "width": 70, + "x": -2940, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "82aab429-6cad-4d46-8aa4-e7b2627ba97a", + "width": 70, + "x": -2940, + "y": 1610, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "38529389-5d2d-403a-bc23-55c0c335c8f3", + "width": 70, + "x": -2940, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "66512045-8f92-4143-a928-a7f5561cef86", + "width": 70, + "x": -2940, + "y": 1820, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5de11994-9f5b-4503-978b-2d113db191fc", + "width": 70, + "x": -2800, + "y": 1610, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d6e41bd3-0052-489f-bff2-bc100ef3d6a9", + "width": 70, + "x": -2800, + "y": 1680, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d974612b-6743-4d07-96ac-9d24c50378d7", + "width": 70, + "x": -2800, + "y": 1750, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e33aaed5-09ea-4478-8496-5de203446593", + "width": 70, + "x": -2800, + "y": 1820, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "492b2234-ac54-42d8-9000-7dd5c272a248", + "width": 70, + "x": -2800, + "y": 1890, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2d39ada0-84ae-4586-9f1b-88c947875fb0", + "width": 70, + "x": -2800, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a2e66711-4074-4388-a40b-2eb28048be3f", + "width": 70, + "x": -2800, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ca419252-2ca6-4bc2-8284-4fd1059fbd0c", + "width": 70, + "x": -2800, + "y": 2100, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "99ef75d1-5051-4bed-9640-5f7adbc38116", + "width": 70, + "x": -2800, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "782dea05-e295-4312-a57d-38244804a105", + "width": 70, + "x": -2800, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "32032b7c-a350-461d-ab30-3430db9ad2c1", + "width": 70, + "x": -2800, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "aa5663d5-6e06-4d53-bc48-bd0b234f1e3d", + "width": 70, + "x": -2800, + "y": 2380, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ed65304c-91ed-4bdd-91cd-0a8cf1b69e32", + "width": 70, + "x": -2800, + "y": 770, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7dd0089a-5686-4fbc-8713-023f2c8b4099", + "width": 70, + "x": -2800, + "y": 840, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "321ab2d5-491a-46e6-95a6-7006dc65cdaf", + "width": 70, + "x": -2800, + "y": 910, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd6e2ea8-a30e-4875-adaf-49be3673aaa4", + "width": 70, + "x": -2800, + "y": 980, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "64a1c855-62bb-44dd-b3bc-9b701b40132d", + "width": 70, + "x": -2800, + "y": 1050, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "d425ed36-2aa8-4839-a7a1-0354eb4d368e", + "width": 70, + "x": -2800, + "y": 1120, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ae29a82b-f026-48cc-ba07-0aaf51cd0475", + "width": 70, + "x": -2800, + "y": 1190, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "440f8245-776b-4dfe-9c4f-a2917b634a33", + "width": 70, + "x": -2800, + "y": 1260, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8760b463-175b-424c-87bb-b417fda43645", + "width": 70, + "x": -2800, + "y": 1400, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2666571f-eb1b-428c-8cff-a9ebe477e964", + "width": 70, + "x": -2800, + "y": 1330, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2875e7ca-8cb9-401e-8357-46d5dfae6eb1", + "width": 70, + "x": -2800, + "y": 1470, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6986ee68-9c8a-4108-bd72-396fc684b749", + "width": 70, + "x": -2800, + "y": 1540, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "0d24c0e7-7b67-42e2-9fbe-4548613d0109", + "width": 70, + "x": -2800, + "y": 490, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b288d15b-4543-456d-8d16-d03c5542434a", + "width": 70, + "x": -2800, + "y": 560, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4fe89cef-79f9-49a1-9bd7-24d0f8b1ea96", + "width": 70, + "x": -2800, + "y": 630, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "13fe2cbf-ebb9-4614-82ff-cde2e98e6685", + "width": 70, + "x": -2800, + "y": 700, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "380ea1b4-a76a-4986-8e65-16f8e466ae4b", + "width": 70, + "x": -2940, + "y": 1890, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d688987-60bb-4813-9c24-9be286dbc2b4", + "width": 70, + "x": -2940, + "y": 1960, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2885eade-a42c-40ce-b5a0-fa57df7f6898", + "width": 70, + "x": -2940, + "y": 2030, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "dd5ee141-7684-4b07-a859-34634e615cb3", + "width": 70, + "x": -2940, + "y": 2100, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "81f71d05-45c6-4d4c-a6fa-413e1837b4d9", + "width": 70, + "x": -2940, + "y": 2240, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "35479fe9-f001-49ea-874d-088210674db7", + "width": 70, + "x": -2940, + "y": 2170, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "72863384-698f-4ade-8d7a-d40cc278e06f", + "width": 70, + "x": -2940, + "y": 2310, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9f8e06db-df2d-43c9-9c83-e86c4b1e7dda", + "width": 70, + "x": -2940, + "y": 2380, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7b4066d-0ddf-4698-862d-3fd308ee44c7", + "width": 70, + "x": -2730, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5d792223-2a79-411f-805e-e7109d47a48e", + "width": 70, + "x": -2100, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2bc32dd4-6720-4446-babe-55ae2d61f55d", + "width": 70, + "x": -2170, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e82ad6e4-3a99-4880-808d-4fa51c1208f0", + "width": 70, + "x": -2240, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fa461a67-5f2b-41b1-9da3-5bb29d7cbcbc", + "width": 70, + "x": -2310, + "y": 280, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e1e2b7ab-3d72-446c-b6e5-eeb0c6e5bec2", + "width": 70, + "x": -2380, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "2198c7fe-07e2-42d2-86d0-6e137bb26310", + "width": 70, + "x": -2450, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f5d24f10-b2a7-47ce-8dcf-cba1fb396ab8", + "width": 70, + "x": -2520, + "y": 280, + "zOrder": 7, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "51f038b7-fe92-4edb-bf20-ac7716f8b606", + "width": 70, + "x": -2660, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "846df340-365f-4859-8137-4845c9256455", + "width": 70, + "x": -2590, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d3d5b5d-86e8-4344-8b82-44228b9e391c", + "width": 70, + "x": -2800, + "y": 350, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "319a3524-424e-4b8a-a9f7-dac5d164b6c4", + "width": 70, + "x": -2800, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "612c1fa8-22b2-4255-88fe-0aa9467ed749", + "width": 70, + "x": -2800, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4ba81b35-147d-4889-887b-a64a240fb165", + "width": 70, + "x": -2030, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "33ce85a5-ff4f-4294-bc47-a2c4c52a9eb2", + "width": 70, + "x": -1960, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b434c9ef-fdec-42eb-a38f-f92c0660330a", + "width": 70, + "x": -1890, + "y": 280, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8c28c7a0-4ad0-441e-9320-f229845e656d", + "width": 70, + "x": -1890, + "y": 350, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "6e8bc317-0915-4f8c-b0c8-ce7d932c437c", + "width": 70, + "x": -1890, + "y": 490, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "fac527e6-8528-4331-9936-c74485929213", + "width": 70, + "x": -1890, + "y": 420, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c32ca22d-a9ab-4a9b-9685-9d89dc258b75", + "width": 70, + "x": -1890, + "y": 630, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1a6d26e3-c850-417a-a68a-3af6a293a8cf", + "width": 70, + "x": -1890, + "y": 560, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "e40c4574-b799-4947-b8e0-95d9ba6c388d", + "width": 70, + "x": -1890, + "y": 770, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9a510917-e123-42e9-91a2-8bf9c9f219a4", + "width": 70, + "x": -1890, + "y": 700, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "21c1768a-05fc-4b22-a35b-6eb72a9a8841", + "width": 70, + "x": -1890, + "y": 840, + "zOrder": 3, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "1ea3d102-4e7e-4a12-8a45-36e2a1d56131", + "width": 70, + "x": -1680, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "970cd971-bb5d-4e8b-b2e2-dedbcdc63d73", + "width": 70, + "x": -1820, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7d31a8ce-4246-452f-a696-57a506ae8193", + "width": 70, + "x": -1610, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c56c67f1-e075-4ec2-925b-9a38e7ac918e", + "width": 70, + "x": -1750, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "953da0bc-6b2c-4429-92cf-b6ff389d9e7e", + "width": 770, + "x": -1820, + "y": 280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "4299ee37-5062-471d-abc1-984a5e940e96", + "width": 70, + "x": -1470, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "ee942be6-f712-454b-b70d-1590de7b8f5c", + "width": 70, + "x": -1540, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "c5daedaf-00b3-4f1a-8bab-91a8cbbc29d0", + "width": 70, + "x": -1400, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "a7e3f43d-f6f9-41d1-8617-14869251bb92", + "width": 70, + "x": -1260, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "818d0751-88e9-4f33-bc65-7ee46b1838da", + "width": 70, + "x": -1330, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "f83e4a2d-cafb-493c-9817-15645ee7d72f", + "width": 70, + "x": -1120, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "8f7ae50c-9555-489e-8d0e-06a1331572e7", + "width": 70, + "x": -1190, + "y": 840, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38aff794-54dd-402d-b4c8-17751c47814e", + "width": 70, + "x": -1960, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8da92c56-1259-403b-a156-7df74a14baa1", + "width": 70, + "x": -1960, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "979dead4-3e30-4d32-8969-9e9566271f71", + "width": 70, + "x": -1960, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7000d706-8e00-4727-aedf-ea35d04d2c95", + "width": 70, + "x": -1960, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d916f3c-05cf-45c3-ba19-8d91b561269e", + "width": 70, + "x": -1960, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "46b44055-ce2b-488f-a608-89c7f3055c6a", + "width": 70, + "x": -2030, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e5f48594-a9f4-4162-a23c-ba7826a79add", + "width": 70, + "x": -1960, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0840838-93c1-409b-9924-b7cc8819de30", + "width": 70, + "x": -1960, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5179aed5-3758-413a-9b9b-fe954d70749f", + "width": 70, + "x": -1960, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0a95f75-1fa1-4708-bc27-ef51908b980d", + "width": 70, + "x": -1960, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9694191e-3214-4c10-8468-e05284bc9100", + "width": 70, + "x": -1890, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b56c233e-68ec-41a5-bde4-fd732145da27", + "width": 70, + "x": -1820, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5408bd0b-caaf-4310-be04-558a2a04328e", + "width": 70, + "x": -1750, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "041fb997-c1e5-4763-90b3-edc7d57d94e7", + "width": 70, + "x": -980, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3f03200-09da-4543-99a7-646e3c641cc2", + "width": 70, + "x": -2100, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d6cbeb9-fbc7-48e5-ae28-928831fbd830", + "width": 70, + "x": -2030, + "y": 560, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3686b064-93a3-49d5-b363-8e76751c2329", + "width": 70, + "x": -2030, + "y": 630, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01b0cebd-d4e1-43f6-b5f0-e4e7d8a56fe1", + "width": 70, + "x": -2030, + "y": 700, + "zOrder": 26, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "138e5340-c8d1-4ad5-a65c-851712e7e024", + "width": 70, + "x": -2940, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "5eed2c65-1d91-4d70-b846-4738ce86fa1a", + "width": 70, + "x": -2800, + "y": 2450, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 8 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c15312f-b04a-4c2d-9f86-ddb512a176b4", + "width": 70, + "x": -1120, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "655bf5f3-43bc-4819-b30d-9d07c8d33277", + "width": 70, + "x": -560, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3d02819d-b9b5-4e3a-9d16-17851fc27c59", + "width": 70, + "x": -490, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1316207-2c45-4b1e-a70a-3699f5ba5d14", + "width": 70, + "x": -420, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2cd287b-754d-4e57-9be3-356e4ddefe53", + "width": 70, + "x": -910, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "37029cdc-971a-42ef-a9d0-1952418bd2c7", + "width": 70, + "x": -840, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f0783a2-3910-4198-b780-36b655880412", + "width": 70, + "x": -770, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d263fa3-b7b5-4f1f-bf8c-d345ea06f0f9", + "width": 70, + "x": -700, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f4eb93d-1ffc-48fc-8585-d71657ac24cf", + "width": 70, + "x": -630, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4572c868-fa6f-44ba-bea5-2058443394b1", + "width": 70, + "x": -980, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9ee338d-3d81-46dc-b73e-0b8189df3538", + "width": 70, + "x": -1050, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "244c52e2-56f0-4314-8956-418feb9b91a6", + "width": 70, + "x": 140, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9a36836-82a6-43da-8a64-208143bb1e89", + "width": 70, + "x": 210, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "582f6b78-0dd3-4d70-b317-1b972bb5f06d", + "width": 70, + "x": 280, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b73b7b51-942b-40e3-b142-c319734679c8", + "width": 70, + "x": -210, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7812f5da-d17f-4c9c-8f2c-9e140aab4ae1", + "width": 70, + "x": -140, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "612dd058-4d3c-4e62-835e-766db286cbc2", + "width": 70, + "x": -70, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7983ca35-d375-4619-8423-cca572113356", + "width": 70, + "x": 0, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "246bc2f6-e887-4dca-a016-d8c617d0a41f", + "width": 70, + "x": 70, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a021a491-adfc-49b1-b062-080b0f058015", + "width": 70, + "x": -280, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d18d836-f32f-4b26-9198-5f0be0a5caee", + "width": 70, + "x": -350, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "515f5a5d-9c6e-4371-bbf3-b8f6927b3df9", + "width": 70, + "x": 840, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbbf20f8-3d13-4bbe-856b-23035d29b67c", + "width": 70, + "x": 490, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "782db057-167c-4f0f-91a7-ec056f4c691f", + "width": 70, + "x": 560, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dfe0d349-fba7-423e-aeea-e62ba950b90c", + "width": 70, + "x": 630, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69486bc5-0bf9-4e44-a635-35b621e6f8db", + "width": 70, + "x": 700, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4aaf4b03-b284-4958-93af-8fd855a0df0d", + "width": 70, + "x": 770, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e752c93-25ab-427d-a9cb-21a1fdda2c45", + "width": 70, + "x": 420, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cccf0ef-08cf-42e8-8a1a-5f55005b412c", + "width": 70, + "x": 350, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8028fc64-67ae-4e1b-9828-37d2bf80ce3a", + "width": 70, + "x": -1120, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34a19461-a380-430f-933f-a22f9e97cf82", + "width": 70, + "x": -560, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5dd545ee-110c-406a-aeac-a6f34431052c", + "width": 70, + "x": -490, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "227f0fbf-0030-45c6-9c02-f53e7c72dff1", + "width": 70, + "x": -420, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30f50a7b-a1fb-46ac-883b-ac95ef603a9e", + "width": 70, + "x": -910, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70b0000e-a5b9-4ba9-9d5e-0561f2a86e64", + "width": 70, + "x": -840, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a418dfe-212d-4278-9748-fe4cec24702f", + "width": 70, + "x": -770, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f89f5115-23c1-48d0-ad78-a2edc0f40cb0", + "width": 70, + "x": -700, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "998edc40-dbe4-4b5d-9328-1cddb4077d42", + "width": 70, + "x": -630, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3647aaeb-f7a3-4822-bb2a-c508af5cbfa2", + "width": 70, + "x": -980, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f4b23b3-631f-43ea-b69f-50f1086ac89e", + "width": 70, + "x": -1050, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54a60622-3e7b-4368-892b-47a02d9a791b", + "width": 70, + "x": 140, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54ae15c9-6f03-4f13-9671-048d91cb8b71", + "width": 70, + "x": 210, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c628e23-4783-40bc-8557-63ea0bc5599e", + "width": 70, + "x": 280, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd4938ab-f44d-4666-b8e2-e43cc67b536f", + "width": 70, + "x": -210, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96e5cc2d-37c6-421e-8d39-66a50b16bcf9", + "width": 70, + "x": -140, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "332a633e-45e0-46bc-bcc9-ae18f01df189", + "width": 70, + "x": -70, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f39ce9b-9a81-46ee-af03-1d295a8934ab", + "width": 70, + "x": 0, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "274f6ddd-5a6c-44c2-9388-49a1feb10c64", + "width": 70, + "x": 70, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7da4a5f8-e8f4-497d-b384-498d9ab0b128", + "width": 70, + "x": -280, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4eedf4c-64ce-4092-8955-a588ee186b53", + "width": 70, + "x": -350, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b4a240a-d500-4898-9c76-38a05a5af266", + "width": 70, + "x": 840, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9b6e8ef1-73cc-4c9c-ac36-6378afd6e532", + "width": 70, + "x": 490, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1906b0b-bc85-4ea4-b2e7-740b9a401b3f", + "width": 70, + "x": 560, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61400d24-6c7c-4ed8-afeb-8dd98fe9a59f", + "width": 70, + "x": 630, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "423e1a50-224a-465e-a70b-3d4b7fbda427", + "width": 70, + "x": 700, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "07341b4c-5363-4e4f-94ed-b2093f6d8313", + "width": 70, + "x": 770, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cc2ed6f-237b-48ab-9ef9-002484f7c831", + "width": 70, + "x": 420, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f502e92f-f58f-499b-a606-aa5bddecc9ca", + "width": 70, + "x": 350, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7675f4cf-d108-4d7d-879f-420ebd536c91", + "width": 70, + "x": -1120, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68af2b65-b359-486b-a9f5-6efa963a1fff", + "width": 70, + "x": -1050, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f223bbc-3f96-48cb-8e4a-c2f3d7f29111", + "width": 70, + "x": -1050, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d959caa0-da24-4e6a-a906-1276dcb9ada5", + "width": 70, + "x": -1050, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "135aa528-78ba-46b3-b946-fc6fd75d58df", + "width": 70, + "x": -1050, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c73ece92-df4e-4a31-aa47-ff812984c5a1", + "width": 70, + "x": -980, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa4ed5df-2dec-4c07-9d42-132a38d290c3", + "width": 70, + "x": -980, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4b69211-0057-4a51-8b9b-7462e9030fa8", + "width": 70, + "x": -980, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ce9c622-9a45-47ad-9f70-a1f6a7c39712", + "width": 70, + "x": -980, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcb692e2-904f-43c3-ab3c-154959505972", + "width": 70, + "x": -1120, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20e3b527-815b-4218-a57e-2cb947622e33", + "width": 70, + "x": -1120, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b68ceb-6d64-4385-aece-44e0fad36c89", + "width": 70, + "x": -1120, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e2a6057-7a51-47be-8a06-4b2a4ae0bf60", + "width": 70, + "x": -2590, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a5f9535-f888-4bcc-bbbf-be5cec9e3208", + "width": 70, + "x": -2520, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f5a99a1f-c242-42f1-890f-e2d4637a2edd", + "width": 70, + "x": -2450, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "651d3f34-d778-4118-b434-9ab358955b14", + "width": 70, + "x": -2940, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f29e6bad-d0fd-4342-a875-0123d217fa67", + "width": 70, + "x": -2870, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccb43b93-2cf8-4f17-adc2-d7544decb2b9", + "width": 70, + "x": -2800, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64698ed9-e68f-4553-a529-b5b6d82c3944", + "width": 70, + "x": -2730, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30c3c324-850c-46da-9c1d-6bacf13219b8", + "width": 70, + "x": -2660, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8404c59b-e79c-482c-9cf3-799e769b3c0b", + "width": 70, + "x": -3010, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06487f97-6dbf-47b0-8bae-b2e2d4599f06", + "width": 70, + "x": -3080, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b1ba355-0033-479e-8410-4423a7ecd076", + "width": 70, + "x": -1890, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5c24fed-a050-435b-acc8-d49032dfa766", + "width": 70, + "x": -1820, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54e797c8-2ed7-41c0-8464-7d24278d480f", + "width": 70, + "x": -1750, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e7f493b-8879-47a8-b9c3-c6a8890c9779", + "width": 70, + "x": -2240, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4374a67-1bdc-438c-842e-89ae1f60758d", + "width": 70, + "x": -2170, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3573fdd1-2c18-4c51-9d4b-da06f0ecd256", + "width": 70, + "x": -2100, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03800618-6b6f-47e5-9b6d-6b2e70916e86", + "width": 70, + "x": -2030, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6b32022-32ca-46be-955a-98e6101370bf", + "width": 70, + "x": -1960, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e16c8fc7-6fb3-47d0-8787-892dacf849db", + "width": 70, + "x": -2310, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "acb65931-7474-4fbc-90be-66d1c5230cb6", + "width": 70, + "x": -2380, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4c5bbcf-0951-4dc6-9e79-1f0c236df2ea", + "width": 70, + "x": -1190, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb63629b-42bd-4eea-9a4e-9fd11ea6fbbd", + "width": 70, + "x": -1540, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df01d5f8-3bab-40f8-b103-fb9689208b9e", + "width": 70, + "x": -1470, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a28ac40-943c-48b9-89c3-f6f2018b5c6c", + "width": 70, + "x": -1400, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba0ce30a-ede2-414b-aeaa-9218016cf42f", + "width": 70, + "x": -1330, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6d153b7-4949-4a2a-971a-8f70adb46e6f", + "width": 70, + "x": -1260, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "93834d93-6a9b-4534-91d0-b517a97fbd3e", + "width": 70, + "x": -1610, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c8ed3d6b-8043-4ba9-a2e0-2c42ba789e98", + "width": 70, + "x": -1680, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc5e060d-94ac-4f89-9198-c2bc5c7fc7b5", + "width": 70, + "x": -2590, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd0baecf-2ca1-4ac9-aa63-a561e0b3cc0b", + "width": 70, + "x": -2520, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d02b0e6-5a18-4d8b-8b09-f5c1a60bd549", + "width": 70, + "x": -2450, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b7f18b9-b61b-4ebd-a7c5-be1329590927", + "width": 70, + "x": -2940, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b18ab662-a43c-4638-9bac-fa61e2a87ff3", + "width": 70, + "x": -2870, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "de49c037-10e5-47de-be80-43d31e98a904", + "width": 70, + "x": -2800, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d68fa37e-eba5-4249-b417-06e554db4bd7", + "width": 70, + "x": -2730, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7c265ee-c43d-47a8-b00d-c64803c9d9cc", + "width": 70, + "x": -2660, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc256579-9fe4-4fd2-88c8-e2020eca333b", + "width": 70, + "x": -3010, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e793e763-4281-4233-ad09-a54aa1deb940", + "width": 70, + "x": -3080, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45636fe2-fce7-4718-b188-2f8eff773926", + "width": 70, + "x": -1890, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4dd3cf6a-6d08-493a-be37-50f0b319af23", + "width": 70, + "x": -1820, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ec7086e-ba33-428c-8416-ca05a36011c4", + "width": 70, + "x": -1750, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f7e22e9-2259-46e8-8ad7-14f6dc412b0b", + "width": 70, + "x": -2240, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d587f720-90e5-47df-b93f-4a0820c6959a", + "width": 70, + "x": -2170, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4905ea81-4e0e-485c-b5b2-6b35d0ebe23c", + "width": 70, + "x": -2100, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c474370a-ee51-43c2-948c-a6c703ed9b78", + "width": 70, + "x": -2030, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea153740-8fab-40da-a202-4ff6fcaab6aa", + "width": 70, + "x": -1960, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8fe7aa3a-d3c6-4091-88b6-d8d045c5d769", + "width": 70, + "x": -2310, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3885d86-d798-4979-b300-91a591ce20b3", + "width": 70, + "x": -2380, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "687f1d0d-26fe-46fd-a3fd-3ac5117fa259", + "width": 70, + "x": -1190, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9580141-e501-407d-83ae-7e0215db9ef5", + "width": 70, + "x": -1540, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ad9ded1-69c0-4173-876b-6eb2dc276cd4", + "width": 70, + "x": -1470, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0bb7710-3a36-4cd9-baca-62c8788a9fa4", + "width": 70, + "x": -1400, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f98ac7b-a48f-4b52-a5a4-b9fe0d1a01de", + "width": 70, + "x": -1330, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e3feb552-3e84-44e5-9caa-7e13092155f3", + "width": 70, + "x": -1260, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a90de91-4a5e-4a66-a493-1ede7189962a", + "width": 70, + "x": -1610, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ddbcec06-8307-4dd5-830f-9e27afb15bc3", + "width": 70, + "x": -1680, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cfe3f657-4608-49e1-9a24-25f41fd6e333", + "width": 70, + "x": -3080, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77fbd5c3-7f9d-4a7d-a6c6-1dcf777a790c", + "width": 70, + "x": -3080, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79a9331a-b3d8-4346-9b6f-5315b60b9d5a", + "width": 70, + "x": -3080, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c5da6c0-cbdf-451c-af20-5da56503405c", + "width": 70, + "x": -3080, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da0d0e4a-9ca8-471f-9122-1b3cd4132b42", + "width": 70, + "x": -3080, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c5164537-5a00-4999-936f-3bb910b06d42", + "width": 70, + "x": -3080, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "766def8d-98be-43a9-a9d7-e0c6598dc9e6", + "width": 70, + "x": -3080, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e1fcb59-dab6-4929-bd02-924c676f5040", + "width": 70, + "x": -3080, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5af7d67-90d4-4f41-9d10-12925b8cc9c4", + "width": 70, + "x": -3080, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a89b72ae-5d22-452a-9657-c0e8e111bf6a", + "width": 70, + "x": -3080, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cca02eea-b08a-4ed6-a8ae-ef4bb80880d7", + "width": 70, + "x": -3080, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "29f43a00-6de9-4f7f-91cd-b62800c5fc73", + "width": 70, + "x": -3080, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b0463dc-d686-4817-bd14-54c9d4d970ae", + "width": 70, + "x": -3080, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "927168f4-5474-4f17-abe0-35c7a06921fe", + "width": 70, + "x": -3080, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30afc543-ea81-4dc0-a7a9-ff8cca34b1ed", + "width": 70, + "x": -3080, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7db18ef3-ce25-4a3a-9444-4148519601a9", + "width": 70, + "x": -3080, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33437904-bdcf-4b95-a8fd-aa50bdf6d740", + "width": 70, + "x": -3080, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "314add3d-29e5-47b6-8e01-b3d6298ce39d", + "width": 70, + "x": -3080, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "677fb1de-bbf9-46a6-bae0-ccf67fff2118", + "width": 70, + "x": -3080, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4bd4cd5a-b580-49bc-8ac3-eed98ac65af3", + "width": 70, + "x": -3080, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66060517-61c6-4a0d-998d-53aaaca79642", + "width": 70, + "x": -3080, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1cab8c9a-86cd-4dea-9de4-b2f5b2d2c167", + "width": 70, + "x": -3080, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e9bce28-fb40-4478-a437-ad8ea7b90efc", + "width": 70, + "x": -3080, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f3961a6-38e8-4aef-821a-7eeba800b7f9", + "width": 70, + "x": -3080, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ecf044ff-1226-4e7d-b9a4-cf53a33abfcc", + "width": 70, + "x": -3080, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cb0e950-9a8c-496d-bd67-774e75c04418", + "width": 70, + "x": -3080, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d9dab9c-63ce-4922-9e02-ff6c19188008", + "width": 70, + "x": -3080, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39b6b3cf-b566-46de-a8e8-6db6e015980f", + "width": 70, + "x": -3080, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b850e52e-6cf5-4ad2-ae1b-781ddaaac980", + "width": 70, + "x": -3080, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62a4a047-24c1-487f-87bd-df3881885551", + "width": 70, + "x": -3080, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2e84312-6fe6-4266-b32b-0b8c1b3224bd", + "width": 70, + "x": -3080, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd831170-7ea4-422e-b57f-c6feaa014ba7", + "width": 70, + "x": -3080, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "9b08702a-d090-4ce8-a271-c53c322f308f", + "width": 70, + "x": 1470, + "y": -210, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "7a34abd9-1305-4db2-9ad0-5ee50a73df8a", + "width": 70, + "x": 1470, + "y": -140, + "zOrder": 4, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "b7befd43-cdd5-4f93-95ba-9d0bf6498759", + "width": 70, + "x": 910, + "y": -210, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "408f3130-0761-470b-a899-8b482db6a9ec", + "width": 70, + "x": 910, + "y": -140, + "zOrder": 5, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "3cae37d1-9a70-40b6-ae40-5b8c99999891", + "width": 70, + "x": 1190, + "y": -210, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "road", + "persistentUuid": "34cff197-1c4b-4fff-a0d5-a53ea9f2f6bc", + "width": 70, + "x": 1190, + "y": -280, + "zOrder": 6, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "flame_thrower_fire", + "persistentUuid": "28a74c98-359a-4215-ab03-e9e261d13ee6", + "width": 0, + "x": 350, + "y": 1400, + "zOrder": 1239, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "3b6c9f7b-aa77-4828-991d-b56ea26f63ee", + "width": 0, + "x": 1444, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "6d1aea08-0699-42eb-a952-082f07447057", + "width": 0, + "x": 910, + "y": -142, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "f213373c-ee27-4b40-9713-d6ee5e0af152", + "width": 0, + "x": 1050, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9a3ce28b-b461-4cac-b2d8-ab32cc3cc65a", + "width": 0, + "x": 1178, + "y": -280, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "1df224b2-7836-4b29-a7e3-09d13e4635d5", + "width": 0, + "x": 1304, + "y": -211, + "zOrder": 113, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50d7b1de-96a1-4f71-b957-e20768dc708d", + "width": 70, + "x": 1540, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64ac38e7-7e9b-4dbb-99f7-73719ee4c392", + "width": 70, + "x": 1610, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8a32a18-eb1a-47ce-9c6c-ae7fd9904ba2", + "width": 70, + "x": 1540, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e450550b-7d99-4206-9a48-e4eda196fd32", + "width": 70, + "x": 1610, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "950c62c8-220a-4a5c-a0cb-027e19a80ebd", + "width": 630, + "x": 910, + "y": -420, + "zOrder": 123, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun4", + "persistentUuid": "e3d8ea57-8d05-4c0e-9db6-8b316d24b503", + "width": 0, + "x": 154, + "y": 1289, + "zOrder": 1240, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "0ac23ea7-fd4d-4558-8625-f1846c824a5b", + "width": 0, + "x": -140, + "y": 1330, + "zOrder": 1241, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "crossair", + "persistentUuid": "3ef2ea28-0138-453d-99de-f457f24e58f5", + "width": 0, + "x": 0, + "y": 1190, + "zOrder": 1242, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "d996ba71-5299-4c8c-a851-c15165c7fb18", + "width": 420, + "x": -3640, + "y": 2170, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 420, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "ea61dde3-6225-4bfc-b020-af6f481c1676", + "width": 140, + "x": -3780, + "y": 2170, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "reloading", + "persistentUuid": "e6e95d11-2c24-4feb-97b7-26db247638a4", + "width": 0, + "x": 0, + "y": 0, + "zOrder": 1243, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "379055e1-4277-4112-a273-ca7a8e7b1b58", + "width": 70, + "x": -1820, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "edeeeeb8-3f02-4bfb-9ab8-1c4834741221", + "width": 70, + "x": -1820, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "010f7ca2-f2a7-4c80-8ada-9f16e900e26b", + "width": 70, + "x": -1820, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "45bb6bdd-d0e8-460a-a4bd-70f2aac0f272", + "width": 70, + "x": -1820, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "22bf9dcf-8fa9-4528-b9ff-403be2c74bba", + "width": 70, + "x": -1820, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fbc2c24c-d552-4227-8e39-267c9803fce7", + "width": 70, + "x": -1820, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abbdf1f4-7f79-4a8f-9012-ca430c01331c", + "width": 70, + "x": -1820, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0d29435-c98f-4d71-95a8-c76429c9a67d", + "width": 70, + "x": -1820, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390b9496-0f57-4dea-8223-06a7e653532a", + "width": 70, + "x": -1820, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4dc0a4d8-1c7a-441e-bb46-d1c80ad45d45", + "width": 70, + "x": -1820, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f2ff2d09-44ab-497f-9ae3-8ea7dc9fec9b", + "width": 70, + "x": -1820, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4d9f97f-d66e-4d35-8b7a-4f6369851554", + "width": 70, + "x": -1820, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "415e8401-b0a7-4275-90df-ef6634767591", + "width": 70, + "x": -1820, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1823bdab-7f77-41ff-9624-976694c09aed", + "width": 70, + "x": -1820, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14937218-258b-42b5-abf0-f455ea6f31ed", + "width": 70, + "x": -1820, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f69293b7-3fd7-46fd-86e5-2dd4bddea2cd", + "width": 70, + "x": -1820, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5cd43567-ab87-41d0-90cf-a996d2c26354", + "width": 70, + "x": -1820, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7d9fe08-0fec-4ad0-8883-0ebd11e97081", + "width": 70, + "x": -1890, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31e7a8e0-72f3-4dd8-a708-610520e34872", + "width": 70, + "x": -1890, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14a6d93c-17cc-4c5f-8681-b463151e8b89", + "width": 70, + "x": -1890, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "32892402-1801-48b8-aeb9-8712ed98ce38", + "width": 70, + "x": -1890, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31150f68-fa1a-4aad-b3bd-63963073e0b8", + "width": 70, + "x": -1890, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f71cd1f2-1f4f-421b-88cc-43838b585048", + "width": 70, + "x": -1890, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5205e117-645c-42f0-9d76-e4cbb7920ef7", + "width": 70, + "x": -1890, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f73db644-d9e2-4613-9f17-015a96a445d1", + "width": 70, + "x": -1890, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5bf3d87e-0fcd-4ba6-bd0b-d8602f632e90", + "width": 70, + "x": -1890, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "227e2221-4a70-4c01-a142-9abc3cdeb23b", + "width": 70, + "x": -1890, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34257ec7-5fba-4522-adce-c37edb474ed5", + "width": 70, + "x": -1890, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2449027-3eae-47cf-a83e-96067ebbbcb2", + "width": 70, + "x": -1890, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f0ae840-cca7-40fd-8013-91982a08c915", + "width": 70, + "x": -1890, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06ae3ba3-3e87-4316-ac5c-b5201d10158f", + "width": 70, + "x": -1890, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa9aa7f0-8203-424c-9389-70c57360ad11", + "width": 70, + "x": -1890, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d13e979-cbe4-4e77-a2db-3b657177dd0a", + "width": 70, + "x": -1890, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3abe7b68-0a8e-43ef-ad5e-386408cec94c", + "width": 70, + "x": -1890, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e061959e-5200-4992-9ea2-9925becbdb28", + "width": 70, + "x": -1750, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a248f1d0-1ff3-4bef-acba-dec57fc60107", + "width": 70, + "x": -1750, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0452f3da-94cc-46a1-aa88-a54962bec1c3", + "width": 70, + "x": -1750, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f1c0d321-6422-45bf-a32c-37156a882fe9", + "width": 70, + "x": -1750, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c97849ce-fbdf-4c55-a992-9da5e75a9b6f", + "width": 70, + "x": -1750, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b62b8267-37b8-4641-9f22-c81ebfec7b00", + "width": 70, + "x": -1750, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bd8e582c-5c05-42bf-bf90-04a55088f539", + "width": 70, + "x": -1750, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aaec5398-f0ae-47da-b63f-4973d2f7e297", + "width": 70, + "x": -1750, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01f1aa61-d7ab-4b5b-b49b-d76ad9182f34", + "width": 70, + "x": -1750, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db12a757-20ab-4755-9967-52fdfce378cb", + "width": 70, + "x": -1750, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d7b45688-9e0e-40bb-83e4-72d8ab273a3e", + "width": 70, + "x": -1750, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26b88f63-426f-487a-809a-28cb3615c135", + "width": 70, + "x": -1750, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "638d0296-4055-4720-a2ad-21a4685ae5dd", + "width": 70, + "x": -1750, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d665de13-a539-4363-8874-8769a313d070", + "width": 70, + "x": -1750, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3cb6cbf5-58ac-4d51-98ca-7dfdf6477e9c", + "width": 70, + "x": -1750, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "669f4def-539d-4f3f-a1bb-7002a6116b3d", + "width": 70, + "x": -1750, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f31451ad-ebe0-4e2d-9408-402dff87cdd9", + "width": 70, + "x": -1750, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90d75adb-b641-4b9f-a75c-36601c08588b", + "width": 70, + "x": -1890, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "26c6ce20-b29c-400e-8d17-d52da2620b13", + "width": 70, + "x": -1750, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ed907ef-0109-4111-a782-b1790fdc8f84", + "width": 70, + "x": -1820, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21a853bd-1c17-4a78-bce8-e79a97b07714", + "width": 70, + "x": -1750, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d20dbb2-e1a2-45fa-8fe4-f1cd85e85e8e", + "width": 70, + "x": -1820, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "855a24c7-eeb8-4d9b-a53d-8acc57cb3378", + "width": 70, + "x": -1890, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c082ae9-a7e6-4cb3-a83e-72203270d762", + "width": 70, + "x": -770, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1355f30a-b113-47ff-8cef-888d3d46995d", + "width": 70, + "x": -840, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82ec4c6a-209d-438e-8a98-58c3b586c9fc", + "width": 70, + "x": -910, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "409cc04d-7319-4ca9-8cb2-a3315384ee18", + "width": 70, + "x": -560, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f73ba1d9-c30e-430d-82b6-593506c361fc", + "width": 70, + "x": -630, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a9b0252-8647-41e8-9cab-7d4cc8af151e", + "width": 70, + "x": -700, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17095f59-e361-4d4d-8f7a-c7a85adfbb6f", + "width": 70, + "x": 140, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f15fdbe-f10b-4bf2-b454-814ec451c9d4", + "width": 70, + "x": -420, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e8a8474-e43c-462e-b48b-b6d641352bf5", + "width": 70, + "x": -490, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c98b159-cd0b-4942-863f-1aa90246db62", + "width": 70, + "x": 630, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b21be4ba-11a4-4099-8b9e-b5541dd1687a", + "width": 70, + "x": -280, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ddb2d83-031e-4629-96f7-4c99c02030ec", + "width": 70, + "x": -350, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5af3e3ce-664e-4929-9729-ffcee9f88b54", + "width": 70, + "x": 490, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18f94db0-8c3b-4aff-a7f4-9b45de1b8183", + "width": 70, + "x": 560, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0676eef-5ea0-494d-9838-0a4d4029a8d4", + "width": 70, + "x": 700, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d9729781-6caa-4ed4-bd86-c3fe7dc410be", + "width": 70, + "x": 210, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d3670eb-2643-4369-8341-911e413a5367", + "width": 70, + "x": 350, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdbbb381-9035-467e-ae15-754fd07b3ce2", + "width": 70, + "x": 420, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9d3352b-800e-4814-b1ff-6d17b0467b55", + "width": 70, + "x": -70, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9142276-e595-4ef9-9075-daf2cf5fa6f2", + "width": 70, + "x": -140, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c62c91e-8eb4-45d6-bce4-9d446785d624", + "width": 70, + "x": -210, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e74b44c1-c954-48e2-8fd9-c2a7a476a09e", + "width": 70, + "x": 0, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa6be785-7041-42d4-a4bd-07eac3001d8e", + "width": 70, + "x": 280, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fda59c2f-08c9-43f8-85b6-6070f96d2471", + "width": 70, + "x": 70, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "gun5", + "persistentUuid": "20766923-9466-4ff2-a793-d64a75da31f7", + "width": 0, + "x": 70, + "y": 1610, + "zOrder": 1246, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "ammo", + "persistentUuid": "4ef41487-1e41-403b-a2f4-f786280a493f", + "width": 0, + "x": -140, + "y": 1470, + "zOrder": 1247, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "mele1", + "persistentUuid": "457e4317-ece4-45d3-bf96-708ab93d5b4d", + "width": 0, + "x": 210, + "y": 1610, + "zOrder": 1248, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "energy", + "persistentUuid": "34696f8a-c031-467a-bffd-889118b6d90f", + "width": 0, + "x": -70, + "y": 1470, + "zOrder": 1249, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "Wheel_info", + "persistentUuid": "539a6f1b-b450-4262-8663-6b83b88a20f9", + "width": 0, + "x": 0, + "y": 560, + "zOrder": 1250, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 630, + "layer": "", + "name": "roof_tops", + "persistentUuid": "a78de224-c727-43d1-ab49-e1257514b75f", + "width": 700, + "x": 2030, + "y": 70, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 490, + "layer": "", + "name": "roof_tops", + "persistentUuid": "cf3e5a1f-e14f-46a9-9c84-121bd8fb070e", + "width": 630, + "x": 1960, + "y": 1050, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "fd1e72a2-0bac-44a5-87e1-85ba38c080c9", + "width": 210, + "x": 1750, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "deco", + "persistentUuid": "288f8d6b-d873-441f-96ad-59d5c5716e5f", + "width": 210, + "x": 2100, + "y": -140, + "zOrder": 1252, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4bf94eb-4ec5-4b25-b552-3ab195d4fb80", + "width": 70, + "x": 2030, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a31cc60-c36b-4425-ad69-4fa789e081cc", + "width": 70, + "x": 2100, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a6e58602-93a5-4b97-81cc-d9138ef9207d", + "width": 70, + "x": 2170, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f93e606-615d-4156-8386-e185e3df5d2c", + "width": 70, + "x": 1680, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b03b1111-8f2f-4d7d-a69a-4116a48cc466", + "width": 70, + "x": 1750, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4df14d97-6a00-4009-a62a-166c2db283c5", + "width": 70, + "x": 1820, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abccf23b-fc4c-432e-b8d8-27f2cbe1acfb", + "width": 70, + "x": 1890, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b5da274-d997-42c3-ab92-7acb711a40de", + "width": 70, + "x": 1960, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbdac022-25d4-4746-a761-92b17efb3aaf", + "width": 70, + "x": 2730, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "546b5db5-4a8b-4103-8a6e-1611e1094137", + "width": 70, + "x": 2800, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec280ece-7ff8-47e4-9274-a695712ba4fa", + "width": 70, + "x": 2870, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f83415-c1f1-4440-865f-558507988cf6", + "width": 70, + "x": 2380, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80cd5ccd-8e12-4f99-982f-d7f4996aa857", + "width": 70, + "x": 2450, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "25e4508b-e120-4f22-9a06-57ba25ee2e62", + "width": 70, + "x": 2520, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ea7cdc0-c69a-4197-8d73-dde98913df4b", + "width": 70, + "x": 2590, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d78c0e2f-9f12-4ab2-9bea-d375d8fd7345", + "width": 70, + "x": 2660, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4aaf82e-d5dc-484d-a186-8f5d90512ec6", + "width": 70, + "x": 2310, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a67d72ce-e525-41b5-b08e-c87c6420663b", + "width": 70, + "x": 2240, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56724d92-6656-4bfe-81d8-be279b19d34c", + "width": 70, + "x": 3010, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b7fb33b8-4c1f-4cf1-b2e0-64fe8dc31b03", + "width": 70, + "x": 2940, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9a824cc1-fe2a-4256-b597-4800fb4fb8e6", + "width": 70, + "x": 2030, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "12e40dc5-519c-4078-b80e-bcd92580ce7f", + "width": 70, + "x": 2100, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8de4bfcc-6b10-4403-9802-b6499790bbf9", + "width": 70, + "x": 2170, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2d4a113c-b80b-4d65-ad8d-965491745fe8", + "width": 70, + "x": 1680, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ca563b2-a769-46c4-9552-97708301013f", + "width": 70, + "x": 1750, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f628446-3d40-4d5d-848e-4cfbd286a12a", + "width": 70, + "x": 1820, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "299d1b9c-b2be-49da-b868-7c4185149866", + "width": 70, + "x": 1890, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f8b44707-0275-4994-861d-0c0d7450c78b", + "width": 70, + "x": 1960, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eb048244-88c7-4aa7-8ab8-9947eba0a880", + "width": 70, + "x": 2730, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f903996-ff3c-41b2-b720-2cd7f695462c", + "width": 70, + "x": 2800, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c1f2650d-2ed9-4255-98cb-35109ed20b3b", + "width": 70, + "x": 2870, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11191653-ef6d-4284-80ca-82d828aa16a1", + "width": 70, + "x": 2380, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d50eaac5-991d-425c-b734-7105bfa861d3", + "width": 70, + "x": 2450, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16a4d5d1-4652-430f-8a01-d96782d34d8d", + "width": 70, + "x": 2520, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db1456de-1872-465f-9a1f-b16e78e3c94c", + "width": 70, + "x": 2590, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d48966a-acae-484c-9721-c691be9f8e13", + "width": 70, + "x": 2660, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f91022d9-353d-453f-bca9-d4d0e7b2f86f", + "width": 70, + "x": 2310, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb36dcad-df81-48c2-8e84-0fe2700579c3", + "width": 70, + "x": 2240, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03b0a374-0086-4ac3-9f07-2726b71dc187", + "width": 70, + "x": 3010, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41d9eb18-ac80-4b25-8107-196e7836960a", + "width": 70, + "x": 2940, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "fb499a32-b4d8-4987-8533-7e9be271ed4b", + "width": 0, + "x": 3010, + "y": -294, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d04a6cfe-914f-4fbe-afc8-b7c0ab85aee8", + "width": 70, + "x": 2100, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6bbfdd8e-a65f-44a6-9a16-363b083724bf", + "width": 70, + "x": 2030, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8c5a4145-e535-4970-95d0-d0a29b3168fd", + "width": 70, + "x": 1960, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "21c199a5-700d-4b79-87b0-17aca78bef39", + "width": 70, + "x": 1890, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d139bafe-ba7d-4fd7-a7ac-9a546975311d", + "width": 70, + "x": 1820, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "66cd3e78-d23a-455a-adab-3622eed903f3", + "width": 70, + "x": 1750, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bbacad5-1dec-4ac7-a8ae-8ea763da7a06", + "width": 70, + "x": 3010, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a4607326-8d55-4e4d-97d0-12286e64834b", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6cc650f3-ac14-4048-9d9f-da7de72707ef", + "width": 70, + "x": 3010, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bc147eb7-7a61-4403-b799-a2610abce9fb", + "width": 70, + "x": 3010, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "165f303b-419a-4b97-a714-bba4e11c4bab", + "width": 70, + "x": 3010, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "435293a7-8109-43b8-ae1e-bf0d3bc5ca29", + "width": 70, + "x": 2940, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27a8eda1-15a1-4dc5-9f0c-4aa12251da03", + "width": 70, + "x": 2870, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45d2fc95-ddfc-4129-9343-a0794c70f4fa", + "width": 70, + "x": 2800, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "84d84a08-2e6c-4b53-a711-55d72cf256a4", + "width": 70, + "x": 2730, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d1b846ad-a128-40d2-a78e-b9983e8269ce", + "width": 70, + "x": 2660, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b3bdc7ac-bce2-40a5-a264-39206d2a08b8", + "width": 70, + "x": 2590, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7dcbb05f-39d6-4743-a20e-c5d93ee42dcb", + "width": 70, + "x": 2520, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "80b0a814-71b5-415d-ae67-9245f9f6d22e", + "width": 70, + "x": 2450, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0429e34a-4d9a-40a0-9b4a-5deb06cc5aef", + "width": 70, + "x": 2380, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "436ce253-69d7-4976-8e87-723022daf579", + "width": 70, + "x": 2310, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "22ed74e9-04c6-4996-bb53-81f8a6fa77fc", + "width": 70, + "x": 2240, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8d7764c2-22ac-4d6c-963b-0e57ff4421ef", + "width": 70, + "x": 2170, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27633410-0095-4e31-bd60-666121b42b1b", + "width": 70, + "x": 3010, + "y": 280, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "05e9a4b1-f2de-4155-82bf-90077dcd7d3c", + "width": 70, + "x": 3010, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "29f51cdb-dd97-49fb-a213-0eb66beebb3a", + "width": 70, + "x": 3010, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56b5b44d-a0ea-4575-8148-0077dd9da47a", + "width": 70, + "x": 3010, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "92213214-6af3-4927-b402-24df9b4fc8c0", + "width": 70, + "x": 3010, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c4d6dbda-fd61-4a3a-8f6b-bb5709e77674", + "width": 70, + "x": 3010, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7365fe5f-4a98-4e16-ab4e-9fe4a56219f6", + "width": 70, + "x": 3010, + "y": 420, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dd4df00-1fb0-4ac8-8e38-2200ce8699eb", + "width": 70, + "x": 3010, + "y": 350, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "372c4922-a7ec-43fb-8316-d18cb53a077b", + "width": 70, + "x": 2940, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4d688634-fe5a-4967-8557-2e4b8d783d29", + "width": 70, + "x": 3010, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "63d31ec3-fad0-4b29-9bbd-baeb71caa6fa", + "width": 70, + "x": 3010, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd80fcf4-b257-4bfc-be7d-9643f286ec3d", + "width": 70, + "x": 3010, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d623dae6-6be0-44ae-a43b-672edc43c2c0", + "width": 70, + "x": 2450, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2f3c7f50-50e5-48ee-acbd-459db2ea34e4", + "width": 70, + "x": 2590, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0f0ff553-48be-4cb4-b363-7155edf7db09", + "width": 70, + "x": 2520, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "381f49cc-415a-444e-979d-b5fdfb2fec77", + "width": 70, + "x": 2660, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d41596b1-0b32-4e8a-97aa-cfcdd57a3d65", + "width": 70, + "x": 2730, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ff63c40b-f01a-4102-9c76-46c9d192cdd9", + "width": 70, + "x": 2800, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "76df4ada-bb4e-44f6-ba27-08ba16f822f1", + "width": 70, + "x": 2870, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4e1964d9-e438-466e-b365-17c1570ab968", + "width": 70, + "x": 2100, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ee5ada45-d54e-4036-b4a7-76a036501f47", + "width": 70, + "x": 2170, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "47f0261b-d89c-4e46-8efa-57b50eb2a176", + "width": 70, + "x": 2240, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "926d984a-bc5f-469d-a3fa-46919ebaa031", + "width": 70, + "x": 2310, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b6154f3f-bf42-4945-bfad-0a8cc5e5d919", + "width": 70, + "x": 2380, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "673f067a-20c6-4f9d-9d52-c66785eec748", + "width": 70, + "x": 2030, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5d9b1c6a-4742-4d7f-b82f-c386def0a11c", + "width": 70, + "x": 1680, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "631f96cf-2c74-45ff-8ccd-dcafedc09a63", + "width": 70, + "x": 1890, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "935b899b-3d42-4180-902e-3b95174e2163", + "width": 70, + "x": 1960, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b02e3e2b-6d12-47e2-8071-1484d49b47e6", + "width": 70, + "x": 1750, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dee61d1-a6ce-4ec2-9bfb-595a3f527ee5", + "width": 70, + "x": 1820, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "90444805-8fd4-4699-baf4-96a5212c3bf2", + "width": 70, + "x": 1680, + "y": 140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "553ebb69-2f0e-4814-9c2e-c80b2b251901", + "width": 70, + "x": 1680, + "y": 210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fe9a7558-4010-4c7c-b755-c2909490fb0f", + "width": 70, + "x": 1680, + "y": 700, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3e3392c6-c642-4265-953d-553c0e573e3b", + "width": 70, + "x": 1680, + "y": 630, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7000acb7-62ce-4654-9010-f419c79a8e69", + "width": 70, + "x": 1680, + "y": 490, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6028e3a9-0e6b-4fd9-b096-7b94d82495ec", + "width": 70, + "x": 1680, + "y": -140, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ed0308c4-da01-44ee-bc47-147cf31c267f", + "width": 70, + "x": 1680, + "y": -210, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2c55369b-0956-4910-aea7-fbe7c417a49b", + "width": 70, + "x": 1680, + "y": 0, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b2e7db8e-5d39-41ff-9445-c0d85dd02105", + "width": 70, + "x": 1680, + "y": -70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "97629bf2-5e79-4fce-8019-0e8a1a30d4d5", + "width": 70, + "x": 1680, + "y": 70, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c6b9a95c-1dc1-4ebd-bab0-943c6867d5ee", + "width": 70, + "x": 2870, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "13c40e78-b469-4a92-92cd-e08fcc143eb1", + "width": 70, + "x": 2450, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d34b2d93-0504-49e7-945b-9eb42e045644", + "width": 70, + "x": 2590, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "413b9b9f-5338-484f-b131-009b1a8c8c8c", + "width": 70, + "x": 2520, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aadc23d7-eef0-4add-8472-5f221b021123", + "width": 70, + "x": 2660, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d832a207-d0ec-45c4-98b1-fc6b384b643b", + "width": 70, + "x": 2730, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "637b95e9-b806-4ca7-85f2-5c2ee09e5e52", + "width": 70, + "x": 2800, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aa964edf-7711-4e9d-800d-b2c100c50be5", + "width": 70, + "x": 2100, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ffa8c8e5-6e09-426b-b801-6d30dd4a688d", + "width": 70, + "x": 2170, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1a8f857e-c7dc-4a5e-afc3-fd670107467f", + "width": 70, + "x": 2240, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "069b7822-7558-4481-b07c-edfdc69e2a2f", + "width": 70, + "x": 2310, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0641e3ef-7add-47b9-8ef3-7fadfcb621b9", + "width": 70, + "x": 2380, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5a3dee3a-9cc3-433d-87d1-ad4d893de231", + "width": 70, + "x": 2030, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6f5c5540-0870-479f-9ca5-1cac75dcca8f", + "width": 70, + "x": 1890, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "530b217c-9402-4420-807d-a32fb1bcddce", + "width": 70, + "x": 1960, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2033f790-beb1-4010-8643-dba66d7eb57b", + "width": 70, + "x": 1750, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dac763ea-61a9-44b7-9dde-e066522140a1", + "width": 70, + "x": 1820, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f3d80b2b-a41f-4cb8-b60a-40c8298f8781", + "width": 70, + "x": 2870, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "de7dab30-fd1a-495a-a62d-8000ce4b7ec5", + "width": 70, + "x": 2870, + "y": 1260, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "16c5ff6f-0d8d-4947-a941-b85dc820bbe1", + "width": 70, + "x": 2870, + "y": 1190, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d56d6973-56b0-44a0-869e-99055a14315c", + "width": 70, + "x": 2870, + "y": 1120, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7f41dbcc-3a34-4f4e-b599-608a495909e5", + "width": 70, + "x": 2870, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1309fdcb-f113-49de-b531-d0bfd3765977", + "width": 70, + "x": 2870, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "23e1665c-98e7-4fc3-a9e8-829c5c9a000c", + "width": 70, + "x": 2870, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e18fa618-e6a1-4fc7-973b-55f16daf1e61", + "width": 70, + "x": 2870, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5bf72e16-ba2d-4215-b423-11a5888a92d0", + "width": 70, + "x": 2870, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "272f8a20-dbde-4a78-9bfe-c290f38a1806", + "width": 70, + "x": 2870, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd021b7a-1c5e-43a4-b164-8ca0e6151b0b", + "width": 70, + "x": 2870, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7fa497d3-5121-4e0b-84b6-4e12c1c44d66", + "width": 70, + "x": 2870, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9a771218-d4ea-406d-b2dd-fd7351bc23ea", + "width": 70, + "x": 2870, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2dbca21b-5e6b-4d4d-8976-aaea8703eeb3", + "width": 70, + "x": 1680, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "703fdde6-2050-4fa4-856e-b85284f6996e", + "width": 70, + "x": 1680, + "y": 1610, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1478f30b-7503-461e-9ea5-9decf73fcf4c", + "width": 70, + "x": 1680, + "y": 1540, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da452c08-2e23-44dd-8b98-e5aa754e47c7", + "width": 70, + "x": 1680, + "y": 1470, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ddd9a7ed-4293-43b7-8543-1de0cbbce567", + "width": 70, + "x": 1680, + "y": 910, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cf9eb196-e355-47a8-b46f-746d74a1b86e", + "width": 70, + "x": 1680, + "y": 840, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "18c5aa67-40c3-41ab-b783-21df9b0c7050", + "width": 70, + "x": 1680, + "y": 770, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "438d72bd-c8a0-46f4-bb07-856674079261", + "width": 70, + "x": 1680, + "y": 980, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "27ef65da-eded-43f3-94b5-10d769e8a421", + "width": 70, + "x": 1680, + "y": 1330, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4ec95727-e908-4bd3-b387-7a088f2d76a4", + "width": 70, + "x": 1680, + "y": 1050, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0cbf61d9-aea5-415a-8da6-f92a294e7cfe", + "width": 70, + "x": 2870, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7ee0dec-cf16-46e3-8bb2-5d591daf98ee", + "width": 70, + "x": 2800, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99b61099-fe13-4aad-91e5-2ed17e72d818", + "width": 70, + "x": 2800, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "23216464-7ed5-4691-bd64-270041c71bc6", + "width": 70, + "x": 2870, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d2e2a94-4d96-4dd8-9326-3d19c3b8abf8", + "width": 70, + "x": 2870, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b87579eb-3594-46c9-9041-f57d35f3d467", + "width": 70, + "x": 2800, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d1c96981-5b9c-45fd-85ef-d6e6f688fcdd", + "width": 70, + "x": 2870, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f770ae38-6cf1-43c1-9dd3-e05ddbf08b99", + "width": 70, + "x": 2800, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad53adb5-864b-4135-950a-e1d5d9d7cf85", + "width": 70, + "x": 2870, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b82a114-f3c3-4740-a8f7-b48cfa5c5d99", + "width": 70, + "x": 2800, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6da719ce-c1d0-4b01-aa52-e3b5546a4d62", + "width": 70, + "x": 2870, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e2279d2-6918-4ed7-8240-848e3c8c78f7", + "width": 70, + "x": 2800, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f64611c-bcf8-4cfe-b9bc-4e47b67a2488", + "width": 70, + "x": 2800, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e88c98ac-7951-4aa3-9e31-f9b2b05407cf", + "width": 70, + "x": 2870, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "486c386a-059a-4fe7-8314-d619895e9b80", + "width": 70, + "x": 2800, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed4d93ac-142c-4e1d-8ae7-2b5612d8e95f", + "width": 70, + "x": 2870, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3f7a230-60cf-4c83-97b1-79d91c9d485c", + "width": 70, + "x": 2800, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd4e7a23-eb7e-4593-a9c2-b0834d17822f", + "width": 70, + "x": 2870, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e3e0e68-07ed-45a2-97a0-bdd25501621e", + "width": 70, + "x": 2800, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "752f28bb-6b1a-4686-abba-2e883c0bebb0", + "width": 70, + "x": 2870, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "481c8e7f-3737-4447-a44b-0e923d0a4c08", + "width": 70, + "x": 2800, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4f45a42-eea2-4805-b077-1043b118d1f4", + "width": 70, + "x": 2870, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "910e5a86-7a57-46ff-a5ce-bdd42a094b3a", + "width": 70, + "x": 1680, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c898e9b-2202-4950-a5b6-cdb31db630c8", + "width": 70, + "x": 1750, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d88c9e5-94b3-4239-8489-8ef27a11dc50", + "width": 70, + "x": 1750, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "15598824-aa7b-407c-bb2c-cee76aaa7782", + "width": 70, + "x": 1680, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b69922-ed59-4e10-ae2c-10bfceb0eaf1", + "width": 70, + "x": 1890, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f0ff9cf6-97fa-41f2-bb18-18861c2b9dfb", + "width": 70, + "x": 1820, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "db4bd46e-8dee-461f-bc19-0fa9a03bb795", + "width": 70, + "x": 1890, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daf91861-b6ba-4e1e-a176-748bb2dd6a52", + "width": 70, + "x": 1820, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2fccca62-a84e-472b-b954-9bee063c2a6f", + "width": 70, + "x": 1820, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2d28a9d-d10e-416d-95c6-4163c2b215dc", + "width": 70, + "x": 1890, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0e019c3c-e3e2-4c16-b9a3-a702a96d7854", + "width": 70, + "x": 1750, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4350553f-34e9-45b0-8b96-fcf672aa2158", + "width": 70, + "x": 1680, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "aac11c90-9d76-4193-9c07-10ab73620297", + "width": 70, + "x": 1680, + "y": 1400, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6078343a-d421-474a-ba9d-678bfe5a4ffb", + "width": 70, + "x": 1960, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "54cde620-fdbf-4813-8cc9-2751218fcd99", + "width": 70, + "x": 1960, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bf0f90f0-dc77-4bcc-8daa-7338d7c64c4c", + "width": 70, + "x": 1960, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "908e2f99-6c21-4866-b8df-9538ea5a54ae", + "width": 70, + "x": 1680, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80c4ec29-d6d0-4444-b171-61da6af6bf57", + "width": 70, + "x": 1750, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0aedcf97-4e4d-468f-aa54-be942a0a50fc", + "width": 70, + "x": 1750, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c01178c1-8011-40f4-be7e-595009c44079", + "width": 70, + "x": 1680, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78e44b3b-923a-4295-903c-8d8be5f0c4fe", + "width": 70, + "x": 1890, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "43f98d3c-40d2-4723-9f4c-12e9c9b80931", + "width": 70, + "x": 1820, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "80eec100-7df4-4d9a-9149-313f0085fa22", + "width": 70, + "x": 1890, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17ed8a8c-db68-4a98-84e5-d592fcaa0fae", + "width": 70, + "x": 1820, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d932241a-c80f-4a4c-b6f9-0c7a763853f0", + "width": 70, + "x": 1820, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87ed1e5a-bee9-4fc1-ba2b-3831947cdfed", + "width": 70, + "x": 1890, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ccddc433-ad8e-47da-8334-0b9a59548864", + "width": 70, + "x": 1750, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2c37fbe-65f3-471a-951c-065ad365cb43", + "width": 70, + "x": 1680, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0a5f9c46-3001-4f1b-8dcd-97221fd0409d", + "width": 70, + "x": 1960, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "537e6e1b-6aed-4759-923e-5b2b9ab669df", + "width": 70, + "x": 1960, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "10766b48-f334-4f00-9633-67a6cd56361b", + "width": 70, + "x": 1960, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "29692a65-4d8c-43cc-b44a-240bcb386887", + "width": 70, + "x": 1680, + "y": 560, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc7ed33c-3579-4f06-b47a-b1472d7e6aed", + "width": 70, + "x": 2030, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d7437d18-8a09-4bd7-a9f8-772d863d9809", + "width": 70, + "x": 2030, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef05e03a-c4bc-43bb-b9c4-10756d148a00", + "width": 70, + "x": 2030, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -23, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "35369171-dcf7-4add-919a-c77646405910", + "width": 140, + "x": 2916, + "y": 51, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "08268a92-32f8-43da-a699-95806c75b214", + "width": 140, + "x": 2926, + "y": 295, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "89edcecc-0111-4d07-b7dc-cd4e5c4c1943", + "width": 140, + "x": 2914, + "y": 515, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "3721e960-fc06-4ba7-89ca-d4c77402b696", + "width": 140, + "x": 2929, + "y": 712, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "081fc014-41e5-4cdf-908d-f642704a7c65", + "width": 140, + "x": 2926, + "y": -81, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -27, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "72b4108f-25e7-4de8-bed5-d77c85a9dd58", + "width": 140, + "x": 2774, + "y": -91, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 38, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "80b69df7-87de-4c9e-9378-6705e93a9dd0", + "width": 140, + "x": 2560, + "y": -97, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 350, + "layer": "", + "name": "roof_tops", + "persistentUuid": "d6253d36-bdf8-4efb-b317-ba4cb19ffdfa", + "width": 420, + "x": 1120, + "y": 2240, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 270, + "customSize": true, + "height": 770, + "layer": "", + "name": "roof_tops", + "persistentUuid": "bf27579c-0a57-408d-bfa1-41ddb79cc37e", + "width": 770, + "x": 140, + "y": 2240, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 350, + "layer": "", + "name": "roof_tops", + "persistentUuid": "db30fcc8-72c4-416e-a867-1bb4e3623c66", + "width": 420, + "x": 1120, + "y": 2660, + "zOrder": 1251, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "18db87d0-b42f-47b0-b55f-2490e58aa57b", + "width": 70, + "x": 700, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f03cd06d-d1e8-40a7-be2e-f711eada215b", + "width": 70, + "x": 840, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4c4520ac-dcc7-46fc-9a06-d2f0f53d7b4c", + "width": 70, + "x": 770, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "db19dc14-1100-4578-a295-c698ec22f654", + "width": 70, + "x": 910, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a744f5d3-ad1b-4834-bcf0-a373a2aa47d3", + "width": 70, + "x": 980, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "df28d3f4-1b4a-4456-bdff-106006d1949d", + "width": 70, + "x": 1050, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ffa6d047-cf0c-4235-a922-5e840460bf66", + "width": 70, + "x": 1120, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d7c9abdd-33b9-4c21-9db1-5a241036e7d4", + "width": 70, + "x": 350, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8a3acc38-b2fb-4af6-bcb8-4cff087b89a2", + "width": 70, + "x": 420, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "535b6aea-b142-4dfc-ab34-7b70067f8ebc", + "width": 70, + "x": 490, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "b2c87575-c14b-4f69-8043-c74e4988a5d6", + "width": 70, + "x": 560, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "51ce2a94-fccf-434a-a35e-db676fa2cf9b", + "width": 70, + "x": 630, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1f6240f8-353e-45a2-b4c1-0327c4a1c0a0", + "width": 70, + "x": 280, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "75e8953f-a21a-4e82-9a7e-3bf0703efbe0", + "width": 70, + "x": 140, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "664c2efb-60b0-4c55-9f50-c2a0aa2e6f06", + "width": 70, + "x": 210, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c7173c46-3789-49f8-8fe8-f66b78aedb3c", + "width": 70, + "x": 70, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "758827aa-6243-4d66-bd23-0f33d8e83444", + "width": 70, + "x": 0, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "4ee0c84f-f0c2-4532-a197-808f7e994298", + "width": 70, + "x": 1680, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "fee1dd8d-c255-4958-81eb-34ed9cc976d4", + "width": 70, + "x": 1680, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dbcfe7c0-5ba0-4435-9139-df2b5ffeac6b", + "width": 70, + "x": 1680, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea82cddb-ac13-4c1d-8285-58e07a9dd129", + "width": 70, + "x": 1680, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "138a6def-b202-4c3f-8457-26f694ffe0b8", + "width": 70, + "x": 1680, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c9249796-de6c-444c-9633-c0c036e74644", + "width": 70, + "x": 1680, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5689059c-8816-4f90-ad45-e4b87ecae9fe", + "width": 70, + "x": 1680, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ec8edcc8-0b1b-460c-b89e-e05ba1463374", + "width": 70, + "x": 1680, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "26c03c8d-60af-4858-8c38-1cdd099ce62b", + "width": 70, + "x": 1610, + "y": 2940, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a66054ae-0246-4618-ac82-4ee578692086", + "width": 70, + "x": 1610, + "y": 2870, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "074bf4ff-bf6c-429d-9c31-387ee9f83395", + "width": 70, + "x": 1680, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "003cd580-aade-47c1-a2df-db399e302c27", + "width": 70, + "x": 1610, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3bfa7108-442c-41a0-af7e-86dcaf05b69c", + "width": 70, + "x": 1610, + "y": 3080, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "db39049c-ff66-48e2-a98b-e5246c9bab2b", + "width": 70, + "x": 1610, + "y": 3010, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2b457b59-a8c3-462a-9b3d-1ab0acffd720", + "width": 70, + "x": 1190, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "60287c70-e7c0-4b3b-9874-dbe61be12c06", + "width": 70, + "x": 1260, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2e56e3f5-b9e0-4f4e-b179-cb51a85003b6", + "width": 70, + "x": 1330, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a14bbb22-3457-42e4-8151-6d478cfc36ba", + "width": 70, + "x": 1400, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6a28a485-b5d6-419d-81c2-e2ed69cfb0df", + "width": 70, + "x": 1470, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c17a0093-b97c-47aa-a638-9fbb0f4cab15", + "width": 70, + "x": 1540, + "y": 3150, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "747cb77b-f5c4-4ff8-ad53-c842d40f3abf", + "width": 70, + "x": 0, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e4ccf47e-8584-4ffc-9df3-3b9218f3a566", + "width": 70, + "x": 0, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45bcee2b-7b28-4117-887a-038572e454e9", + "width": 70, + "x": 0, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6dc8fa62-6545-4293-8fb5-5c360836d5b2", + "width": 70, + "x": 0, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dd979be9-1dd6-461d-b490-60e608ff3aee", + "width": 70, + "x": 0, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ba972223-5331-48f4-87a7-4076ede13dc9", + "width": 70, + "x": 0, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "35a53d64-17b0-4726-a956-5b565492b321", + "width": 70, + "x": 0, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5ae70e97-c405-46ea-aae5-7f504698f6cc", + "width": 70, + "x": 0, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "98e19e2b-7048-4adc-9633-91e95182b93d", + "width": 70, + "x": 0, + "y": 2940, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "de084cd6-25bc-45f0-9fbc-b4bf80f72dda", + "width": 70, + "x": 0, + "y": 2870, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "1bccf72a-3a8a-4f48-b4b8-5415cb79826c", + "width": 70, + "x": 0, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9898dcb0-d207-4f3a-bbbc-c2dd89f66586", + "width": 70, + "x": 0, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "829c963f-15e1-4ac1-add3-da88cc2cad2e", + "width": 70, + "x": 0, + "y": 3080, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3f29cf5d-8a39-4a50-8ff9-3ce5069a0513", + "width": 70, + "x": 0, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "269cb788-212d-4b6d-a564-9c1b13d3e877", + "width": 70, + "x": 1610, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "26d4094a-25a1-4c0d-aa06-dade9878b5a1", + "width": 70, + "x": 630, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a988f5ea-f8e0-45f5-9544-4e14f5ccfd7b", + "width": 70, + "x": 770, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e08c5d0c-1826-488f-9b64-dd31703fdf3d", + "width": 70, + "x": 700, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "88e6dfd1-a4b1-44b5-a0d3-642da1455ec9", + "width": 70, + "x": 840, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2e6f2410-f832-4631-85a0-07d6eeb4e464", + "width": 70, + "x": 910, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "460977dc-3446-44db-ab0f-0d223866b051", + "width": 70, + "x": 980, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7608ee28-9760-490c-8d94-f94fad504325", + "width": 70, + "x": 1050, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "da5cdf80-61b2-4ffd-94e3-61c86760f39c", + "width": 70, + "x": 210, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "011b9989-045d-4a30-9cfe-b01abd000d82", + "width": 70, + "x": 280, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "379a55a7-ea5c-4836-a9e9-0874d09f08ff", + "width": 70, + "x": 350, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0dbf86dc-38c8-45a7-8330-ace138b4edb8", + "width": 70, + "x": 140, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c714d1a-036c-4606-ae34-b828eb71fd63", + "width": 70, + "x": 70, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "56adb359-6c0d-4cac-a58f-e27cd140e27f", + "width": 70, + "x": 1120, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c2206fd-4293-4567-94f7-fe5cd158125e", + "width": 70, + "x": 1680, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "659684c4-2f45-46b0-a21a-a06fc3a9760e", + "width": 70, + "x": 1680, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "3c363a86-8994-4bd7-9b60-0e0bb1a310d6", + "width": 70, + "x": 1470, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f6c107b1-1f6a-4db1-896f-15f0b574fefa", + "width": 70, + "x": 1540, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f9835191-ac46-4d0e-aff6-2b3eb6688515", + "width": 70, + "x": 1610, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "f4fc9e52-7596-4aaa-8ad0-4987f7d1b592", + "width": 70, + "x": 1330, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a97989da-7671-4fa1-9216-a619c494f7ec", + "width": 70, + "x": 1400, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "a8333718-b610-4507-a25a-af6f50753590", + "width": 70, + "x": 1260, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "41d98456-46f2-47e1-822a-de6fc87fa557", + "width": 70, + "x": 1190, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "205dc4d3-73ec-4b35-b062-d607744dea6b", + "width": 70, + "x": 490, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc345a7f-bbe1-4e1c-a410-ffa7c9e7c587", + "width": 70, + "x": 560, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb435e2a-9547-4353-90bb-6dc674fae5d6", + "width": 70, + "x": 420, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4c737963-9284-4c4a-a5bd-ecbc42b6aa8e", + "width": 70, + "x": 420, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ac48281-b081-4d55-abd7-59a796ca929c", + "width": 70, + "x": 420, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2bab83f-0b21-4147-9f64-aabc02f2f60c", + "width": 70, + "x": 490, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "686a085e-73b5-4e46-ac2f-f25118bc27ae", + "width": 70, + "x": 560, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "92b36048-1921-433c-a106-c75de40dff81", + "width": 70, + "x": 490, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56ef937d-e997-48ec-88a2-04444dd08508", + "width": 70, + "x": 560, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7432bde4-6b7d-4c9b-9346-e18782fa953a", + "width": 70, + "x": 630, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9aec6bad-e750-4e42-8d5e-76abf5ec3844", + "width": 70, + "x": 840, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "219265f3-dd0c-412c-94dc-e667cdf58341", + "width": 70, + "x": 770, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61ae6366-39d3-48f8-baf1-77dc2151e5ac", + "width": 70, + "x": 700, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "87578644-b4fb-4108-a395-7fc48e5293fe", + "width": 70, + "x": 630, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20403a3a-bfb7-4282-a534-4ba54a4142ea", + "width": 70, + "x": 700, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a30cd11c-0cbe-4cec-b716-83e095303b98", + "width": 70, + "x": 770, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3231895-c246-4063-8d76-de2968df7132", + "width": 70, + "x": 980, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "662cab6c-3f75-4c95-a5e5-ff8351682c43", + "width": 70, + "x": 980, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f9a478d-dc4f-44cd-b402-5bd3bcfb75a5", + "width": 70, + "x": 840, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abfda71c-02cf-4acf-8427-f0f42ed47574", + "width": 70, + "x": 980, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a22d3727-b966-4b47-af99-92ffb3eab656", + "width": 70, + "x": 910, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ea9c2ccd-116d-4dd4-a10e-50e3cf70c7b8", + "width": 70, + "x": 910, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bcac54e4-f5f1-4fb3-8353-77f0b7778b75", + "width": 70, + "x": 910, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "192b3569-e9b9-43d5-998b-c37e2c81bd71", + "width": 70, + "x": 980, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8d7019eb-7659-4e1c-90c7-55654867e06e", + "width": 70, + "x": 910, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c519c90-6114-4b71-bf2f-a57d09fa1234", + "width": 70, + "x": 980, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e673ff3-b8a7-4f50-8f2c-4ec3be3b006b", + "width": 70, + "x": 980, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e614d0c7-27f2-4975-ba8a-ae6ca166d59b", + "width": 70, + "x": 910, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65b9f9bf-f73a-407d-8cbc-e3a13dc53144", + "width": 70, + "x": 910, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c55ca6a1-004d-41b1-9bb3-d315777ba5c8", + "width": 70, + "x": 910, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "915b7bc4-d865-4d44-b00b-491c4b2d2b2b", + "width": 70, + "x": 980, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f808326e-021a-4cd5-a68f-713be215bb49", + "width": 70, + "x": 1050, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90ff0c58-7ec7-4da3-a774-e007ef5efd5d", + "width": 70, + "x": 1050, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd9243de-317f-407a-afc2-796a1a192af0", + "width": 70, + "x": 980, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9051282c-ce48-4fb4-924d-afb4945ac327", + "width": 70, + "x": 1050, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6f9e88f-caed-4be8-806a-8441460cec6d", + "width": 70, + "x": 1050, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6c990a2-0436-4d92-b105-0dfb6e660076", + "width": 70, + "x": 980, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a5893099-8900-4299-a738-b7fce3298011", + "width": 70, + "x": 980, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dcbbbc72-6b09-477d-ada4-3b130255c0f4", + "width": 70, + "x": 910, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7a73874-e9a8-4894-845b-15cb120a4b44", + "width": 70, + "x": 980, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2af6665f-5dd6-4adc-99b8-d2d15ebdfef6", + "width": 70, + "x": 910, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18013dbe-d7fd-4c7e-b2d0-281a873c9a59", + "width": 70, + "x": 910, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4845f030-1aa1-4ea0-afaf-f8c1deb102f7", + "width": 70, + "x": 910, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "22b61d57-1050-4978-b611-5fccc197aeca", + "width": 140, + "x": 630, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 14, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "77cb1f9e-6bef-46b0-8bdb-70aa4ca296a3", + "width": 140, + "x": 350, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "5f863ce2-76d6-4612-8531-0e72e902ace3", + "width": 140, + "x": 126, + "y": 3141, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -81, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "5533b630-7b6b-488a-b46c-8468b856197e", + "width": 140, + "x": 1190, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "441ed61f-1265-4c65-aa86-8c5c89d6227b", + "width": 140, + "x": 910, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "e3a27c7a-f704-47e5-ac7c-2cf75d4b55a8", + "width": 140, + "x": 1470, + "y": 3150, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "46116a74-c82b-489a-8722-14e8fc84c6cc", + "width": 140, + "x": 1584, + "y": 2125, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "659e0f50-c913-4b0e-b434-17a61be34adb", + "width": 140, + "x": 1304, + "y": 2125, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 11, + "customSize": true, + "height": 140, + "layer": "", + "name": "foliage", + "persistentUuid": "45d62f23-766f-4d53-83e0-679075519a57", + "width": 140, + "x": 126, + "y": 2185, + "zOrder": 116, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7271123-185b-4768-8c90-5c0941efa8a6", + "width": 70, + "x": 2380, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c1a4d02e-52a4-432e-b3f9-73bdd865f5e9", + "width": 70, + "x": 2520, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e7c9af17-d2d9-401c-82e1-25a4fe11322f", + "width": 70, + "x": 2450, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2716921d-3646-460b-a3a3-94aac43e3bf9", + "width": 70, + "x": 2590, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9370535f-d80e-431a-9581-de61f2017ed6", + "width": 70, + "x": 2030, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "19dcd4a6-3f64-4558-a745-6af2aba38268", + "width": 70, + "x": 2100, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "20689c2c-5670-485e-a31e-c7009ed56f56", + "width": 70, + "x": 2170, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "dbff8b92-147e-412f-9187-347ed57b66e5", + "width": 70, + "x": 2240, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "2dfd74b5-524b-4452-9b4a-f952f492bf96", + "width": 70, + "x": 2310, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "bb1e818d-553b-455f-aa66-6f128f7012bb", + "width": 70, + "x": 1960, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "9b83ddba-24b5-4848-9e28-6d379bccb56f", + "width": 70, + "x": 1820, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "84e2b3f6-cd43-40a7-a4fe-cd492d3e214b", + "width": 70, + "x": 1890, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "0ddb1721-e496-4021-ad68-fa1c978e9d6a", + "width": 70, + "x": 1750, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ba9b2e79-f806-4a17-9dc5-bc151b2d68f1", + "width": 70, + "x": 2870, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "49b551a4-aca8-49dc-b092-d9ca7987b587", + "width": 70, + "x": 2660, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "d5cb869c-bc86-4f9c-9378-9ac312629f91", + "width": 70, + "x": 2730, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "806686c5-3bec-4691-a9b1-4fbbd64f7ee0", + "width": 70, + "x": 2800, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "e8bd910e-23b4-43c5-bd6f-e17a517d8d05", + "width": 70, + "x": 2870, + "y": 2170, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "cd0f45fc-6abc-40fd-a70c-020e28e6d63b", + "width": 70, + "x": 2870, + "y": 2100, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "08ef7399-dece-40ff-837e-252019150802", + "width": 70, + "x": 2870, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "7d6c1c9f-0b96-4eca-818d-952f81cb9465", + "width": 70, + "x": 2870, + "y": 1960, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "45108584-2f3b-4bab-995b-062ad59ff9ea", + "width": 70, + "x": 2870, + "y": 2450, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "33511547-f08c-4d9c-b362-d5823875e180", + "width": 70, + "x": 2870, + "y": 2380, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5af4c433-0333-47fd-a7d7-0e89bbbd3a84", + "width": 70, + "x": 2870, + "y": 2310, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5b625785-9d13-4097-9214-cda61ec683ce", + "width": 70, + "x": 2870, + "y": 2240, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "8250ee98-d602-4797-8cef-19ee3c240e5b", + "width": 70, + "x": 2870, + "y": 1820, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "725eb193-5c27-4486-b8a3-2e2cfb574324", + "width": 70, + "x": 2870, + "y": 1750, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "6e5b1020-08a2-431e-b384-ffe5e2a00704", + "width": 70, + "x": 2870, + "y": 1890, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "04e3986e-c400-4087-8328-ce90c7d6110b", + "width": 70, + "x": 2870, + "y": 2660, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "ea44194f-7c82-4055-b779-69b3641adfc8", + "width": 70, + "x": 2870, + "y": 2590, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "168bbb2f-a430-4eb8-a6cc-18ab0f61476c", + "width": 70, + "x": 2870, + "y": 2520, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "47e24764-d82b-4fdb-8b77-e1553ac0bdee", + "width": 70, + "x": 2870, + "y": 2730, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5e61d5be-f3d6-4120-8870-ce819be954a0", + "width": 70, + "x": 2870, + "y": 1680, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5e41b374-47d1-4ee6-af34-4fab36430a10", + "width": 70, + "x": 1680, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "f74087e8-5bf5-4c62-bb50-5af0fc20d391", + "width": 0, + "x": 1610, + "y": 1803, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d7d6258f-c239-4446-8764-f6081976ac1e", + "width": 0, + "x": 1610, + "y": 1944, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ee9ff4b-f297-4f7a-8d3d-476284497305", + "width": 70, + "x": 3080, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b1797207-5739-4c89-b2ab-702d203e1709", + "width": 70, + "x": 3150, + "y": -210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "158adeed-3ba0-4bc2-8856-0bdf22b17436", + "width": 70, + "x": 3080, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a418c1ba-d731-459c-9457-04262d6d5689", + "width": 70, + "x": 3150, + "y": -140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "67b552a9-57f5-4f66-8e98-3b460ecaa71a", + "width": 70, + "x": 3080, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "183695d6-ef91-4790-bca6-96c89829f9cf", + "width": 70, + "x": 3150, + "y": -70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9b42062f-9087-4f70-ab84-dc5dbe943006", + "width": 70, + "x": 3080, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a4ab624d-c44c-44a3-bd83-633bb0a0fdd4", + "width": 70, + "x": 3150, + "y": 0, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "30b22fdc-d3e2-4edd-b482-1f80a03b5d06", + "width": 70, + "x": 3080, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "157c2b49-faa6-4983-8d9b-dd4d2e176ddf", + "width": 70, + "x": 3150, + "y": 70, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62b12e31-88ec-42ad-9304-7796f48b87a9", + "width": 70, + "x": 3080, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "23288e1a-8b18-4682-b34b-d263a7ee3712", + "width": 70, + "x": 3150, + "y": 140, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ea4fb8a-37c8-4cae-bcc4-e987ff99f482", + "width": 70, + "x": 3080, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba79ea26-1b9c-4d76-8278-9addd200fc89", + "width": 70, + "x": 3150, + "y": 210, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec3bedcb-b9b5-488a-ba16-69aef4dd0161", + "width": 70, + "x": 3080, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56b2845b-5c41-4604-9aee-19c320439dc5", + "width": 70, + "x": 3150, + "y": 280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3687e612-ed9b-42fd-b4b0-e4a6c646dc82", + "width": 70, + "x": 3080, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d19bf4a8-93e7-4635-831d-c23781e93f40", + "width": 70, + "x": 3150, + "y": 350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d890ec14-b9f7-45f4-b4d0-3f4b6de24762", + "width": 70, + "x": 3080, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ac599b3-9b5d-4f47-82da-4939ed18bf83", + "width": 70, + "x": 3150, + "y": 420, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52bc591b-f4fc-4874-9be4-223e798e5a6e", + "width": 70, + "x": 3080, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4f0e8cf8-e767-4498-a355-2cd175f4ee6c", + "width": 70, + "x": 3150, + "y": 490, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3084472c-b931-41d5-b91e-66acfc98004e", + "width": 70, + "x": 3080, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "767725d5-371b-4711-baa3-3033fd815572", + "width": 70, + "x": 3150, + "y": 560, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d8ac935a-3722-4f46-9bbe-0aa1e878ccae", + "width": 70, + "x": 3080, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64ee35de-601a-4bbf-b297-de0218e7ab68", + "width": 70, + "x": 3150, + "y": 630, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f3f5f40-951f-4c03-9a4f-7d3466db3a1d", + "width": 70, + "x": 3080, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "638af857-4eea-4d48-92e4-3204c9f66ed1", + "width": 70, + "x": 3150, + "y": 700, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0ff9a0d-aa62-43b6-8ed3-352b3be155b2", + "width": 70, + "x": 3080, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "997b15a5-b19b-48cf-a6b8-6eaa1a4d98bf", + "width": 70, + "x": 3150, + "y": 770, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd9b33e2-87cf-4184-93c2-94825eef0123", + "width": 70, + "x": 3080, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "70c5fd24-219a-495e-8391-12bab4bb850b", + "width": 70, + "x": 3150, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a6ff9cf-82e6-4a70-a526-a8728043c7cd", + "width": 70, + "x": 3080, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f69c92c1-2a84-498c-8602-d61261815df8", + "width": 70, + "x": 3150, + "y": -280, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3749f72-eece-4648-a292-abf23c4074d9", + "width": 70, + "x": 3080, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed7f0166-abfa-4191-8fa9-a46239161233", + "width": 70, + "x": 3150, + "y": -350, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6ce4fc5-1d99-4396-9db7-2805a43325e7", + "width": 70, + "x": 2940, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1eca040b-661e-4c96-9c48-dca32183af01", + "width": 70, + "x": 3010, + "y": 980, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9db1c70-e25e-4a75-99b8-2762435e763a", + "width": 70, + "x": 2940, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "809f91d5-5183-4b05-8d04-499e7919e175", + "width": 70, + "x": 3010, + "y": 1050, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbcde2a9-9eaf-4f39-9a7a-9af9e5cea827", + "width": 70, + "x": 2940, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08cdcb23-b132-46c0-ad9a-5e27133b8d4d", + "width": 70, + "x": 3010, + "y": 1120, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f57eb58-b056-4617-91b0-b8a632cc51ee", + "width": 70, + "x": 2940, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ef6e2ab-1447-4643-bd22-fd07dba62b43", + "width": 70, + "x": 3010, + "y": 1190, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2bb31941-fd71-4456-a6d8-0de4f61966b4", + "width": 70, + "x": 2940, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "948a38d7-6bf1-440b-a47f-bcd9b6cf4abe", + "width": 70, + "x": 3010, + "y": 1260, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f5059e3-36db-4da9-9832-c2c7ad227fe9", + "width": 70, + "x": 2940, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f01ab895-b3d0-4a8b-9d84-25b857346fe3", + "width": 70, + "x": 3010, + "y": 1330, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ada0399d-8fef-41ba-9a72-965f9b8f105c", + "width": 70, + "x": 2940, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f5f227f-b2fc-4802-b5ea-394300131322", + "width": 70, + "x": 3010, + "y": 1400, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5ce903dc-bb50-4385-b863-48f707b6db90", + "width": 70, + "x": 2940, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9d825cb0-f0cb-48e5-93b5-98368f03721a", + "width": 70, + "x": 3010, + "y": 1470, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a5bab17-92b6-4dba-b8c7-492b59fa8fdf", + "width": 70, + "x": 2940, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64fb44af-3bd8-48b8-bb9a-29c0db1805c3", + "width": 70, + "x": 3010, + "y": 1540, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c54ef18d-e742-41ec-a857-84b36c063902", + "width": 70, + "x": 2940, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "48a399cb-b611-4b5a-99b6-74b831296cbf", + "width": 70, + "x": 3010, + "y": 1610, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e3fb31c9-43ab-490b-9b23-b60b90a5a6be", + "width": 70, + "x": 2940, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79ed71d9-b6da-4355-b4d1-b602aa1bd270", + "width": 70, + "x": 3010, + "y": 1680, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cbd98a1-dac4-4fdd-bc86-8ef1fc716369", + "width": 70, + "x": 2940, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b949e377-dde1-4ae6-87b9-eb2a6e89b904", + "width": 70, + "x": 3010, + "y": 1750, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "735701af-2741-4745-9790-63a267ee828e", + "width": 70, + "x": 2940, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "190e7e9c-a4df-440c-bf74-55d70211e524", + "width": 70, + "x": 3010, + "y": 1820, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b79ef89a-7178-4b80-a263-e89a921aa6ac", + "width": 70, + "x": 2940, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe5ce019-ae55-44c3-9916-18ffdc65ac4c", + "width": 70, + "x": 3010, + "y": 1890, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0f07a886-09a2-465b-9f61-990c6a4382e8", + "width": 70, + "x": 2940, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2527fd7f-3ec2-4d0f-9e60-6d55d4f5cbf5", + "width": 70, + "x": 3010, + "y": 1960, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0691f845-1af6-4545-8f7f-e6c59dd952d1", + "width": 70, + "x": 2940, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9f94936-305e-42d2-8d7d-9e58650bce40", + "width": 70, + "x": 3010, + "y": 2030, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c598e59-ed8d-450f-b2e6-f6a8b16feb6d", + "width": 70, + "x": 2940, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f79831d7-5398-486c-851d-115effa61db3", + "width": 70, + "x": 3010, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc0eebf8-306f-4dc3-89be-ca7118e9edf0", + "width": 70, + "x": 2940, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3338b8cf-0a0c-4511-b549-f5759715240f", + "width": 70, + "x": 3010, + "y": 840, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b2d8984-4c06-4272-b7e7-3264e23234d1", + "width": 70, + "x": 2940, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "375eee19-95f5-486b-9dc0-6622011d1803", + "width": 70, + "x": 3010, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "61a73149-7a26-4c35-a70b-ffddf6e45560", + "width": 70, + "x": 2940, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ce414fcc-5964-427c-8aba-cde219af3107", + "width": 70, + "x": 3010, + "y": 2310, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "363f7cc4-3049-427d-b117-f693f6b48544", + "width": 70, + "x": 2940, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6926c3ce-6241-4894-8a45-3f1810805225", + "width": 70, + "x": 3010, + "y": 2380, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da7a6745-cbd7-46dd-affa-576e6cf77f3f", + "width": 70, + "x": 2940, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47044eb9-420c-4107-8ae1-69014527b043", + "width": 70, + "x": 3010, + "y": 2450, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "523b7f1f-cbcb-4381-8fbf-6e4b0ec9338a", + "width": 70, + "x": 2940, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "abc87865-5b92-42db-9458-35183a25b219", + "width": 70, + "x": 3010, + "y": 2520, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e44952bd-0514-4fa4-b552-ea0ea39e819f", + "width": 70, + "x": 2940, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a265d631-fa9f-408a-b227-457304de3ad7", + "width": 70, + "x": 3010, + "y": 2590, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f160aaf2-91fb-4cdd-b0dc-41797ff8ec47", + "width": 70, + "x": 2940, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71add1a8-ced3-489c-9fdb-9395e22691b1", + "width": 70, + "x": 3010, + "y": 2660, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d14b557a-5e0c-4ade-bd01-97d4625d808d", + "width": 70, + "x": 2940, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "71806cae-0d84-4322-861d-830707a2567d", + "width": 70, + "x": 3010, + "y": 2730, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "123cf952-b22e-424d-82d0-5dc35c40f0ff", + "width": 70, + "x": 2940, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8e8dd259-f137-4a91-8ae4-6d55ffd32e14", + "width": 70, + "x": 3010, + "y": 2800, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0958302c-4d83-45dd-aa71-ea311727f694", + "width": 70, + "x": 2940, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "695f3ee9-c4a9-46be-bc72-8b45f1adb2b1", + "width": 70, + "x": 3010, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1385a91a-4059-4c2b-9b04-35d5a0bb01f4", + "width": 70, + "x": 2940, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f39da00-29d3-435b-9e18-69837758ea72", + "width": 70, + "x": 3010, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1d4c1fbb-ee7d-40af-b93b-b12bcb54b43a", + "width": 70, + "x": 2940, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee1d1a68-9895-4c96-b119-eb48e0ed9786", + "width": 70, + "x": 3010, + "y": 2170, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6477a0ae-886d-4fdb-8940-b4adba8caf37", + "width": 70, + "x": 2940, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c089291f-0aed-4658-b698-a6d5e247fb32", + "width": 70, + "x": 3010, + "y": 2100, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f804a2b8-b77e-4d4f-ab84-32f37e80bfdb", + "width": 70, + "x": 2170, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "02048fa1-fc22-4354-aa5d-1f54b0d96e75", + "width": 70, + "x": 2240, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ada9f06a-8e9b-4456-aee8-f542d4e09fa1", + "width": 70, + "x": 2170, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "af3909b9-9b91-496f-820a-2fb733bf5cff", + "width": 70, + "x": 2240, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "38e19f54-832e-44f9-8f20-3eada258d1dd", + "width": 70, + "x": 2310, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8339acad-1cde-4da6-b905-6fc58d008d14", + "width": 70, + "x": 2310, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "600c2e5b-ac35-48ce-bcb7-9f8f57272037", + "width": 70, + "x": 1820, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1008b10b-246f-45b3-abff-863b8a18868a", + "width": 70, + "x": 1890, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "97542886-57c1-4e16-98f2-9546b51093c0", + "width": 70, + "x": 1820, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aef5ab2f-78e0-4036-8ee1-5fc6b662fe5f", + "width": 70, + "x": 1890, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2120a881-3494-43d6-9164-03d2c8aa0270", + "width": 70, + "x": 1960, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cb4c4f32-bed1-4269-9c61-17dc172c061f", + "width": 70, + "x": 2030, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a7905d17-823e-422c-8ed2-802047a63797", + "width": 70, + "x": 1960, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a6ad1cc-0ebe-4499-a755-be2aa5b0570d", + "width": 70, + "x": 2030, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8261608d-acbb-4d23-97e0-ba477e80acfa", + "width": 70, + "x": 2100, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0d292fbc-945a-45d9-b1d3-1390f4d97f12", + "width": 70, + "x": 2100, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00169f9c-f759-43aa-ad30-dadff6e4976d", + "width": 70, + "x": 1750, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a15c5a5-3eac-434d-ae73-bcbf862d015f", + "width": 70, + "x": 1680, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6be504bc-8139-4253-b18a-75a3668ba45a", + "width": 70, + "x": 1680, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1c730ba7-584e-4f6f-8a2b-f23512391363", + "width": 70, + "x": 1750, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7df5811b-5eef-4ee6-a946-363af4f599f4", + "width": 70, + "x": 2870, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "313ccecf-f6a2-43dc-a30f-6a2ec8db0abe", + "width": 70, + "x": 2870, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "35b1a0d1-a22b-4754-8dfb-9b31ebc9d80c", + "width": 70, + "x": 2520, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c11cb813-0825-484d-b037-84128ae2bdac", + "width": 70, + "x": 2590, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf07e3ce-8896-4896-9078-a8695a722cb7", + "width": 70, + "x": 2520, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef9a1474-da4a-49f2-b6d1-78e4b0a435e8", + "width": 70, + "x": 2590, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "293dc4f4-b2d1-4400-80af-251d1e2c8e29", + "width": 70, + "x": 2660, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0227c3b-0575-4ba1-814d-a6f48033523e", + "width": 70, + "x": 2730, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8cbe2c0e-6ef4-48ec-93ab-6a67e2173fa0", + "width": 70, + "x": 2660, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0314c448-5d74-481d-aed7-5162b4f96402", + "width": 70, + "x": 2730, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5074403d-fe8f-4fad-a8d5-19e30f346e6d", + "width": 70, + "x": 2800, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0bee87dd-0872-41f8-87eb-591141a9e4ff", + "width": 70, + "x": 2800, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17f7b1ee-78af-4dad-808a-d5f62d1a8954", + "width": 70, + "x": 2450, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3fb1e545-4bf6-4ebe-9417-41f21c8d53f0", + "width": 70, + "x": 2380, + "y": 2870, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64cbd0ef-1c49-4ac8-bd9a-1923f268efb5", + "width": 70, + "x": 2380, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c67936d9-de7a-4498-a1cc-749dabd07a97", + "width": 70, + "x": 2450, + "y": 2940, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9d26cf8-c2c6-4d30-a103-eb8bed8e2925", + "width": 70, + "x": 1120, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5d0872ec-5354-4cac-a6d5-5fe5e54b94fe", + "width": 70, + "x": 1190, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7fc67a94-9cc9-49c7-a23e-ec7929c976eb", + "width": 70, + "x": 1120, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6230dcc8-7764-48b1-8392-cec8b826eda3", + "width": 70, + "x": 1190, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "377c99b3-66d7-445a-a6d7-945dc7300194", + "width": 70, + "x": 350, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "24f140c7-5104-4366-8023-ce2a2741f30c", + "width": 70, + "x": 420, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b64bb96-a729-4131-8a8c-a5dd4fd3c8c1", + "width": 70, + "x": 350, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "72afa7df-2709-4112-ab53-7f0303eacfb2", + "width": 70, + "x": 420, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4aac1e7d-b51d-42c6-8dfb-9cc0d830c7f6", + "width": 70, + "x": 490, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "46da4b4a-22ad-436c-812b-b20088180454", + "width": 70, + "x": 490, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bb55f5f-0b1b-4057-8fec-712630ef2d51", + "width": 70, + "x": 0, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3b55c2f-b34e-4b13-acbd-91fde3219d55", + "width": 70, + "x": 70, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "25b63eef-2bd9-44c6-aa6e-44ae15382969", + "width": 70, + "x": 0, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "381ae918-a98e-4360-9290-ebf808256776", + "width": 70, + "x": 70, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee158e05-dd9d-4af9-8c2e-9fdc8b874d3a", + "width": 70, + "x": 140, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "96f637e6-0f80-497c-aa46-0107ac00b481", + "width": 70, + "x": 210, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41964124-f593-406a-906d-78dfa9e752e5", + "width": 70, + "x": 140, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d248ab1e-d63d-4e34-94c9-1f6b59bd14ec", + "width": 70, + "x": 210, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b61dafc-1609-421b-bed7-d39216b1adbc", + "width": 70, + "x": 280, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e4fdf9a4-5535-4883-8449-83dd9ac069e7", + "width": 70, + "x": 280, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ffa26a2-7c6f-4ba9-9a40-8eb3d5f2dd15", + "width": 70, + "x": -70, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2ee3482c-c697-4811-91c8-158d8fedaf86", + "width": 70, + "x": -140, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dee244e5-4836-45e3-ab62-a2caf92d167d", + "width": 70, + "x": -140, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d71dacc7-4173-482d-9cbf-76aae714c050", + "width": 70, + "x": -70, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f785d620-5ee1-49e2-93ee-8db3bc96a1ba", + "width": 70, + "x": 1050, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a65da36-2606-417d-9c89-bc97712f6de6", + "width": 70, + "x": 1050, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "217b60a2-29cf-413d-8483-843424d7923c", + "width": 70, + "x": 700, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fdb93f2f-c58f-4a38-a56c-a91782114d5b", + "width": 70, + "x": 770, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1bc4442e-c035-49b6-befe-de5850b5c65b", + "width": 70, + "x": 700, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98e0e73d-732b-4c89-bea8-bccf24c50260", + "width": 70, + "x": 770, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fc946573-e7b3-47bc-bf9c-3a88df516152", + "width": 70, + "x": 840, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82764079-5b47-43c7-9fe4-8547cc2a93ca", + "width": 70, + "x": 910, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62258e2f-a743-4623-9801-83e424cdf9fe", + "width": 70, + "x": 840, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2f0f3fe-cd92-4c6d-ae48-f9e8e9d08f4d", + "width": 70, + "x": 910, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "76ef79f5-a4a1-4ceb-9ec6-77b94b7cdd34", + "width": 70, + "x": 980, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66db1afc-3032-4ebb-b28d-20cd0ee3481a", + "width": 70, + "x": 980, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5894286c-870d-45e6-aaeb-875275e78517", + "width": 70, + "x": 630, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef277cc6-fbd8-450e-bcb5-7b92cde98201", + "width": 70, + "x": 560, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ad26e6b-8e48-460a-a99c-da34439eac07", + "width": 70, + "x": 560, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1c9e3eb-714a-40f7-9c63-4794f6125b13", + "width": 70, + "x": 630, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cd5885e-31c4-4f47-83ef-b4b03e6daab9", + "width": 70, + "x": 1750, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a480ce00-5937-42bc-8fb6-d54e918660b0", + "width": 70, + "x": 1680, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e12a51a6-0c17-4cd2-b1e7-6ca891fcf230", + "width": 70, + "x": 1680, + "y": 3080, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b58d2948-22b7-44c6-b07f-5c16f6b9d2b1", + "width": 70, + "x": 1750, + "y": 3010, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df6e1896-3fb1-471a-b644-4350a6b41c51", + "width": 70, + "x": 1750, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5216a0cf-1afa-417d-b318-5323c1ad4b28", + "width": 70, + "x": 1680, + "y": 3150, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cac65707-2130-46c6-9150-bef4f9c330ae", + "width": 70, + "x": 1750, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aa1d9363-4217-493f-9c8f-a13a9e5bfa36", + "width": 70, + "x": 1750, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d4e718d2-e3c1-476c-9049-4eb624a01d47", + "width": 70, + "x": 1400, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4141e308-5677-4685-ab69-11fa5910b691", + "width": 70, + "x": 1470, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "84253ec8-9e27-4c12-8aae-f4c325920ca2", + "width": 70, + "x": 1400, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "21f4ac88-6b92-4479-8349-285ddede5773", + "width": 70, + "x": 1470, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aab3920b-2d81-47d8-9336-10981b8f1624", + "width": 70, + "x": 1540, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c00a7288-6b54-4dfc-a34a-a23a2c2c1e7a", + "width": 70, + "x": 1610, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "889ac785-6223-4387-899b-67157d80281e", + "width": 70, + "x": 1540, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b882bbf4-f210-40d8-9009-25d7aef580c1", + "width": 70, + "x": 1610, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11643d97-345c-405c-b55c-a43bace67833", + "width": 70, + "x": 1680, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dae9b41d-1a41-4edd-a3c8-79abceee0a46", + "width": 70, + "x": 1680, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8dddb32f-54e4-4187-b4f8-28f1f2c10020", + "width": 70, + "x": 1330, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e82e91a-527e-4464-a809-98c5fa27b2e0", + "width": 70, + "x": 1260, + "y": 3220, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9ec91aa-2a8d-4908-baca-4ff267122385", + "width": 70, + "x": 1260, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e189d7da-d75e-4a7c-8a2b-70d244f0de6e", + "width": 70, + "x": 1330, + "y": 3290, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "c35bcf53-b789-4163-8995-d72b80c4c806", + "width": 0, + "x": -122, + "y": 3188, + "zOrder": 124, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "green_leaves_particle", + "persistentUuid": "cba4acd9-0250-47fe-8582-da0034598875", + "width": 0, + "x": 271, + "y": 1480, + "zOrder": 1253, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "trash_movable", + "persistentUuid": "531cda43-5daa-48a2-9b26-6dea1106bd1f", + "width": 70, + "x": 1890, + "y": 2730, + "zOrder": 1254, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 54, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ed415228-77d3-436c-847f-b90b6c9520db", + "width": 0, + "x": 140, + "y": 3290, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -47, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "5df41048-4014-4755-82c5-412eac15d5a4", + "width": 0, + "x": 560, + "y": 3229, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 18, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "637a61c4-0533-45b0-84cb-21e8d85631c8", + "width": 0, + "x": 1190, + "y": 3290, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 28, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "14e6320a-368a-413a-ade1-8bb6fc9ac942", + "width": 0, + "x": 1689, + "y": 3150, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 53, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "7415f961-d4b6-4b0b-acf1-6c1843edf4dc", + "width": 0, + "x": 2109, + "y": 2901, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 9 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -26, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "b7c52dee-dcfa-4864-a3fb-2e6a098e1754", + "width": 0, + "x": 2520, + "y": 2940, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -38, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ca0a8b2e-569e-4146-86b7-9d350f89d8ee", + "width": 0, + "x": 2870, + "y": 2879, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -107, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "cd023872-90a4-4c72-b921-3763b8e7078e", + "width": 0, + "x": 3010, + "y": 2730, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 20, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "9acc6143-5f47-47df-9ebd-dd14d974ad5e", + "width": 0, + "x": 2957, + "y": 2450, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 134, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "6a6266c7-7c08-43e9-9b1a-2e564d003738", + "width": 0, + "x": 3010, + "y": 2030, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 68, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "52ce10ae-e9fa-4b28-b900-a3ee6d4f5d7c", + "width": 0, + "x": 2969, + "y": 1610, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -58, + "customSize": false, + "height": 70, + "layer": "", + "name": "trash_movable", + "persistentUuid": "ec4a4612-c1fb-40c5-8b9d-816e781460bf", + "width": 70, + "x": 3010, + "y": 1120, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 10 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "89cc239b-3682-42b7-852e-1567691db2e3", + "width": 70, + "x": 3080, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dc720b0a-4873-4073-a02f-43c60047fff0", + "width": 70, + "x": 3150, + "y": 910, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -112, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "dcd05f20-59a6-4ab4-b3c8-d540a3979301", + "width": 0, + "x": 3150, + "y": 630, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -118, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "487647e1-3ee7-4b30-b24b-3307608b22f8", + "width": 0, + "x": 3096, + "y": 210, + "zOrder": 1236, + "numberProperties": [ + { + "name": "animation", + "value": 1 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -60, + "customSize": false, + "height": 0, + "layer": "", + "name": "trash_movable", + "persistentUuid": "7f101c6e-eb6c-4b96-a4b9-6c6e23592c43", + "width": 0, + "x": 3150, + "y": -140, + "zOrder": 1255, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 770, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "2e12c97d-35b4-4dc6-a177-dda10b629d80", + "sealed": true, + "width": 1540, + "x": 1680, + "y": 1120, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "locked": true, + "name": "grass_tiled", + "persistentUuid": "baf5ced5-a3dd-423c-bff1-e4ab4a316c63", + "sealed": true, + "width": 2100, + "x": -140, + "y": 3150, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1750, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "aba688b4-8fa1-4ea4-86d2-c130686bbad3", + "width": 2030, + "x": -1120, + "y": -490, + "zOrder": 2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "ecbfecde-16b0-4863-8299-8a2fb59fb93a", + "width": 140, + "x": -1260, + "y": -490, + "zOrder": 1256, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "102f5637-9e1a-443d-a42d-aa0c73fb3177", + "width": 2450, + "x": 910, + "y": -490, + "zOrder": 1257, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "d7469110-1aac-4cab-b910-0c060b0abce0", + "width": 140, + "x": -2730, + "y": 3360, + "zOrder": 1258, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 140, + "layer": "", + "name": "grass_tiled", + "persistentUuid": "41374744-530b-4bcf-82f3-f7dda8530f63", + "width": 140, + "x": -280, + "y": 3360, + "zOrder": 1259, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "38a806fb-516e-4754-8b47-2d0062ed55cf", + "width": 350, + "x": -3570, + "y": 3640, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "fdf2b692-7cbc-41fb-bd1d-bfe8719bb4d1", + "width": 350, + "x": -3150, + "y": 3640, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "1b0f0c9a-4810-4d6c-bd33-862d91616564", + "width": 350, + "x": -3150, + "y": 3990, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "76a36fac-78ea-426e-b5a8-7d0a264d945f", + "width": 350, + "x": -3570, + "y": 3990, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "e9b113e4-2c3c-4005-a601-ae1051b77e40", + "width": 350, + "x": -3150, + "y": 4340, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f9e7ef8a-c8c2-478b-90c1-0a4e92327c28", + "width": 350, + "x": -3570, + "y": 4340, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "895e459d-af96-428b-9650-a2714ef3d04b", + "width": 350, + "x": -3150, + "y": 4690, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "e12b8a99-ac10-44b3-ac99-4d9b1f24db16", + "width": 350, + "x": -3570, + "y": 4690, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "092c2f41-e17c-4a41-bf4a-7e7596a32bbe", + "width": 350, + "x": -3150, + "y": 5040, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "53c646ac-98b4-4cff-bbf4-ece1c712089d", + "width": 350, + "x": -3570, + "y": 5040, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "ce70ba42-80db-4a95-a346-7db0a71a2034", + "width": 350, + "x": -3150, + "y": 5390, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "a3cf8ee3-3c6b-48ea-a8c6-6f3c002c759e", + "width": 350, + "x": -3570, + "y": 5390, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "94d3ce29-5648-45a3-a9df-234333d1c1d6", + "width": 350, + "x": -3150, + "y": 5740, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "3f599dd2-8069-4e8f-8982-14219715ea60", + "width": 350, + "x": -3570, + "y": 5740, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "3e3317b1-d82c-4c9f-9b71-a612550f8391", + "width": 350, + "x": -3150, + "y": 6090, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f2cb5fa1-2572-4c2f-a744-4f61637e4c3a", + "width": 350, + "x": -3570, + "y": 6090, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "b0f2a5ec-b67c-4496-a304-6bc3a32fcd72", + "width": 350, + "x": -3150, + "y": 6440, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "485cd6d0-5660-42cc-8abe-d5b64cf4eacc", + "width": 350, + "x": -3570, + "y": 6440, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "9b937dfc-9d28-450d-b8c1-80834df3aabf", + "width": 350, + "x": -3150, + "y": 6790, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "50086363-198c-43d6-9e21-d07de2f2638f", + "width": 350, + "x": -3570, + "y": 6790, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "77b08fc1-04cd-4040-8bb1-c1e9edec7b56", + "width": 350, + "x": -3150, + "y": 7140, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "bridge", + "persistentUuid": "f49921fa-2095-4a09-95e2-41523f510132", + "width": 350, + "x": -3570, + "y": 7140, + "zOrder": 12609, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "4244cce5-d7c9-4b94-9c12-a8bf726dc0a8", + "width": 0, + "x": -3234, + "y": 3810, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "01638110-3d70-42e3-8611-9ce8ea7c4f2d", + "width": 0, + "x": -3232, + "y": 3672, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 4970, + "layer": "", + "name": "road_1", + "persistentUuid": "e583ab96-139f-4b62-945d-1665d25abd31", + "width": 70, + "x": -3500, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 4970, + "layer": "", + "name": "road_1", + "persistentUuid": "962bf66c-4701-4b9b-acc3-8c2d1a932210", + "width": 70, + "x": -2940, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3990, + "layer": "", + "name": "road_2", + "persistentUuid": "a549ac99-8158-4b76-928a-56a418b49cd3", + "width": 70, + "x": -3220, + "y": 3640, + "zOrder": 6, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "367b9fb5-f764-47a9-abf0-b4bca3be3e64", + "width": 0, + "x": -3232, + "y": 3990, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "5f5776b6-0228-4b20-b536-48c3a449edf8", + "width": 0, + "x": -3232, + "y": 4200, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "699a89e0-f262-4922-94f4-06b677b1690e", + "width": 0, + "x": -3232, + "y": 4410, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9343d17c-7821-403e-bec3-1ea7e8c34047", + "width": 0, + "x": -3235, + "y": 4620, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "aa4ebfe0-4339-402d-a4a2-3f3f9aa09888", + "width": 0, + "x": -3231, + "y": 4830, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "e50ff460-d090-4876-b460-3e13f875d7ea", + "width": 0, + "x": -3233, + "y": 5040, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "e12d6482-65fc-4eec-bb1c-af70e2f5b587", + "width": 0, + "x": -3232, + "y": 5250, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "eeeff3f5-f20b-4b65-a8ca-ef0a18a694dc", + "width": 0, + "x": -3234, + "y": 5460, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d9cf91a6-0d2d-481e-9d5f-3c76bc9fb8d3", + "width": 0, + "x": -3233, + "y": 5670, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "6889692b-bb8a-42f5-b92e-7d05884c3956", + "width": 0, + "x": -3233, + "y": 5880, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "9b1b9e09-c7d4-44b3-9099-cc28987bc93d", + "width": 0, + "x": -3233, + "y": 6090, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "99b93efe-61bd-4898-a661-f4f073ff5daf", + "width": 0, + "x": -3232, + "y": 6300, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d161e608-d6a7-4475-b6b1-c724d1ec524d", + "width": 0, + "x": -3232, + "y": 6510, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "d061e83a-2103-444d-a61e-36eee1a38700", + "width": 0, + "x": -3233, + "y": 6720, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "1e5c958a-d494-4bf4-b1dd-efcb1c13d9aa", + "width": 0, + "x": -3235, + "y": 6930, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": false, + "height": 0, + "layer": "", + "name": "road_block", + "persistentUuid": "121f7e40-428d-47c7-9fdf-13924d15c77c", + "width": 0, + "x": -3234, + "y": 7140, + "zOrder": 12610, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3920, + "layer": "", + "name": "concrete_1", + "persistentUuid": "e50b3ae6-01f4-498f-a424-fbe09e890138", + "width": 70, + "x": -3570, + "y": 3640, + "zOrder": -2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3920, + "layer": "", + "name": "concrete_1", + "persistentUuid": "9c82384e-7f20-4090-9104-2af969cc37d2", + "width": 70, + "x": -2870, + "y": 3640, + "zOrder": -2, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "e7a6ff30-5b2a-44b8-8da9-b91a57a61740", + "width": 140, + "x": -2870, + "y": 3570, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "concrete_1", + "persistentUuid": "56857c88-d539-4ba6-a8a7-6353fa6b857c", + "width": 140, + "x": -3640, + "y": 3570, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3845, + "layer": "", + "name": "hidden_separate", + "persistentUuid": "0ef98db6-7d9e-4b22-b706-6a5abfdfdf6b", + "width": 15, + "x": -2814, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 3845, + "layer": "", + "name": "hidden_separate", + "persistentUuid": "1b7bf7dc-0ec4-4303-ae2e-d04e742028db", + "width": 15, + "x": -3567, + "y": 3640, + "zOrder": 12615, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "94388d24-a7b5-4459-80ce-eb0c863cb0dc", + "width": 70, + "x": 3220, + "y": 3080, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b79fc1bc-fab8-4c27-9b03-4787305df5de", + "width": 70, + "x": 3220, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7c9f53b1-3dd9-443d-8985-d3f69dd1b3d2", + "width": 70, + "x": 3220, + "y": 3010, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0b9d5620-26e0-488c-8bbc-92cd2227063e", + "width": 70, + "x": 3220, + "y": 2940, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cab0ab87-48a8-4d14-ae31-190c2a4c6611", + "width": 70, + "x": 3220, + "y": 2870, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "10a2d0b9-7176-4684-9adb-78b19cc4c766", + "width": 70, + "x": 3220, + "y": 2800, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a900117-b1c4-4e5a-9d5c-956f1696793b", + "width": 70, + "x": 3220, + "y": 2730, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6fd3a72b-33e0-4abd-aa56-86223ce7ffa6", + "width": 70, + "x": 3220, + "y": 2660, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "135e5de9-4fd6-40ee-9622-8060eca75481", + "width": 70, + "x": 3220, + "y": 2590, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0176bf7c-d318-4bda-93d5-59175384cb96", + "width": 70, + "x": 3220, + "y": 2520, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "60b06f8a-1cad-4f3f-9819-beefaddff3cb", + "width": 70, + "x": 3220, + "y": 2450, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f3c6867-a1eb-4132-99f8-53787743649d", + "width": 70, + "x": 3220, + "y": 2380, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd3ee937-5aec-4274-9445-42c159fff743", + "width": 70, + "x": 3220, + "y": 2310, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "50455268-0d3c-4af4-9b30-f43a9bf5e60a", + "width": 70, + "x": 3220, + "y": 2240, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9f4db797-87a8-421f-aeb9-44eca0f6646f", + "width": 70, + "x": 3220, + "y": 2170, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6cdff58-852e-4695-8503-e1d3c3848487", + "width": 70, + "x": 3220, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "792d138e-cfc5-45a6-85fb-8f1eff956449", + "width": 70, + "x": 3220, + "y": 2030, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbbaec7e-98ad-40e3-8d7a-7ce89ee9d960", + "width": 70, + "x": 3220, + "y": 1960, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11b3b9ce-300b-4d51-9010-a4e81a9c1c9f", + "width": 70, + "x": 3220, + "y": 1890, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8a466cb5-d0f5-4db1-8815-2725528d5a83", + "width": 70, + "x": 3220, + "y": 1820, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd664f6c-a628-41dc-891a-4570a6ced4e9", + "width": 70, + "x": 3220, + "y": 1750, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "34e3797e-9ddc-4da5-b3d7-6d2915d650a3", + "width": 70, + "x": 3220, + "y": 1680, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04d6b381-a25f-4599-9871-48e3f5cbd248", + "width": 70, + "x": 3220, + "y": 1610, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "279b179e-be17-4963-8286-1a4d32adff43", + "width": 70, + "x": 3220, + "y": 1540, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "656615c1-a607-4c86-a9d7-b17ad00f6a9c", + "width": 70, + "x": 3220, + "y": 1470, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "675decc9-3e72-48de-bda2-c640154893fb", + "width": 70, + "x": 3220, + "y": 1400, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c16812c4-5fcf-4be4-a095-85dc6095fcff", + "width": 70, + "x": 3360, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f1c6247-a682-4d92-b2e6-5e8c76545498", + "width": 70, + "x": 3220, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "362f2a14-9977-4d17-8c19-c1f1e9d7c349", + "width": 70, + "x": 3220, + "y": 1190, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "023f9fba-6d0a-46e6-b68e-d464ec02022a", + "width": 70, + "x": 3220, + "y": 1260, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f121e5f-b6f5-4d2b-b007-623617562250", + "width": 70, + "x": 3220, + "y": 1330, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ac740f90-4902-427e-9cc9-033c28ace14a", + "width": 70, + "x": 3290, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b5317dc4-8507-46e7-a18c-887c11f0eadb", + "width": 70, + "x": 3360, + "y": 980, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "549246ff-f158-4a4c-9fba-a8f2fff3dab1", + "width": 70, + "x": 3360, + "y": 1050, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5b00f3f7-5bfb-4ff2-a2c0-a9005456b248", + "width": 70, + "x": 3360, + "y": 840, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "457fc91e-1c85-48ae-a464-63df3f73216a", + "width": 70, + "x": 3360, + "y": 910, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f70c009-fc0a-4e01-b03d-de00f54fe71c", + "width": 70, + "x": 3360, + "y": 700, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5d4ae15-fde0-4321-b4a7-bef52ee5d524", + "width": 70, + "x": 3360, + "y": 770, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "619c4678-e015-4925-b2ed-0c121d72a713", + "width": 70, + "x": 3360, + "y": 630, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fcba22e3-24b1-4534-ae12-a284ad147dc1", + "width": 70, + "x": 3360, + "y": 490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cfacffdd-6eff-4c29-ba16-c431274dffbf", + "width": 70, + "x": 3360, + "y": 560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "32bade4a-abd7-4447-b76c-15a9eb466996", + "width": 70, + "x": 3360, + "y": 350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c8c5633-9311-424e-964a-5b1b85a4360c", + "width": 70, + "x": 3360, + "y": 420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f78446a2-5335-4085-b80e-165fe3c89973", + "width": 70, + "x": 3360, + "y": 280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dd529572-e275-4fcd-bda2-c27691c2f794", + "width": 70, + "x": 3360, + "y": 140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "685641d0-85dd-4757-bdc1-ace0751f9d12", + "width": 70, + "x": 3360, + "y": 210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bc6070c6-bd4d-44d7-a032-560258940ab3", + "width": 70, + "x": 3360, + "y": 0, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5edf1410-2ae0-4fc0-8004-932fe3f41a62", + "width": 70, + "x": 3360, + "y": 70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "858a8d10-e09b-4b1e-97c9-cf064a1192a7", + "width": 70, + "x": 3360, + "y": -70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a01ca1ae-4382-49bd-9338-fe0db674a97c", + "width": 70, + "x": 3360, + "y": -210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc560ad0-d360-4616-9dde-81c119176c6f", + "width": 70, + "x": 3360, + "y": -140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "17941190-a016-45ae-a02a-c9b00d17a0a5", + "width": 70, + "x": 3360, + "y": -350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "daa50f30-0807-4ded-a9d5-378bf482aeb7", + "width": 70, + "x": 3360, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e6d6e601-dc66-4377-af95-351c5c69913f", + "width": 70, + "x": 3360, + "y": -420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6c3a8caa-08b4-4be6-85c1-4845cea12b44", + "width": 70, + "x": 3360, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8912593e-238a-402d-8c03-522b39025b59", + "width": 70, + "x": 3360, + "y": -490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2bb9cce-842e-465c-a426-25df49e8e94d", + "width": 70, + "x": 3220, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ed216a3-2dd0-4c79-9df6-1229fbfa651a", + "width": 70, + "x": 3290, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e26992d-3cc1-4ac4-886c-856e77490f80", + "width": 70, + "x": 3150, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fe175bd9-b38a-482a-96a6-44f763fb93d6", + "width": 70, + "x": 3010, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "63e9f096-b087-4a80-a9e8-ca90a1716352", + "width": 70, + "x": 3080, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b70b588b-4871-4ced-8924-f337b4705463", + "width": 70, + "x": 2870, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5f5bb7ce-1901-4449-aa98-a106e266ad85", + "width": 70, + "x": 2940, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7bce86c0-61b3-44cb-b9b2-3db17c52fc49", + "width": 70, + "x": 2800, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "11335e74-c246-48ec-83d7-17a6883fb477", + "width": 70, + "x": 2660, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "650a66c7-048c-4b4d-b789-e48c56584955", + "width": 70, + "x": 2730, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7282b7c5-1952-4431-82a5-77fd892dcd29", + "width": 70, + "x": 2520, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "209f6d74-6121-4d25-ae7a-647c84c42000", + "width": 70, + "x": 2590, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ed4d28f9-657d-42a9-bd09-93a50a038693", + "width": 70, + "x": 2450, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4e50ecb8-1a91-4ed4-ae3c-7c31e594bd31", + "width": 70, + "x": 2310, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "74652814-ab4d-4d2b-af09-79c63b5eac91", + "width": 70, + "x": 2380, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4ac3d6a8-0ae1-4541-becc-caf3d5174909", + "width": 70, + "x": 2170, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "20ff5682-0280-41f1-8a1d-fa4929f9c87a", + "width": 70, + "x": 2240, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86adae75-7bb5-4d4c-bf8f-954d4b3a9f9a", + "width": 70, + "x": 2100, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "390c118d-79e4-4543-8759-0b92aa005b75", + "width": 70, + "x": 1960, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "90baef04-0161-46f8-9267-5fc7b0ad8942", + "width": 70, + "x": 2030, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "757db44f-7073-486e-8528-708bd2b805ec", + "width": 70, + "x": 1820, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99b03627-dcc0-4d81-a7da-ea133547b728", + "width": 70, + "x": 1890, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b8d220bb-981c-4d72-929d-6c8fc23826b1", + "width": 70, + "x": 1750, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c2f43d6-176a-4d66-a50a-76938360776f", + "width": 70, + "x": 1610, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "eff35083-0e24-4b52-a0a9-c1ea23d99c38", + "width": 70, + "x": 1680, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3f20d88-0720-4b00-ad5f-fccc89653564", + "width": 70, + "x": 1470, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "56d4ef48-db22-4982-beac-f0080b174d2e", + "width": 70, + "x": 1540, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6f8dc6a9-b98d-4d56-b273-3ec6264b8f80", + "width": 70, + "x": 1400, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "57b86dce-5f73-4ca1-93b6-8d8c80239d50", + "width": 70, + "x": 1260, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf38cfb9-8dee-40bb-a76d-122b6286b475", + "width": 70, + "x": 1330, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b04bc9b9-cb4f-4632-a11c-ca202d10ed0c", + "width": 70, + "x": 1120, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f08e198c-7111-4b7d-9c5f-317256ff187f", + "width": 70, + "x": 1190, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b0fc4606-a63d-4657-a77e-1b58a51db8a0", + "width": 70, + "x": 1050, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "28d46a35-dbb5-47c4-a828-89d9973ce77d", + "width": 70, + "x": 910, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dbf24c27-1a1d-42a5-8778-ed89d1464e1f", + "width": 70, + "x": 980, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "29821c79-1179-4590-b1e2-3a4414e5baed", + "width": 70, + "x": 770, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c48ff7f2-4315-46a2-bfa5-1780f8c9bd70", + "width": 70, + "x": 840, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9ac4d792-388f-41a8-990d-7518e8de5448", + "width": 70, + "x": 700, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e3b2f2c-b8e1-4002-93d9-b18a715cf627", + "width": 70, + "x": 560, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "df9ef22a-ff2d-4057-8c01-9a06267d7030", + "width": 70, + "x": 630, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ad6b6f2f-75aa-465c-956f-71751c4151c0", + "width": 70, + "x": 420, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a3afc854-94b1-4c17-89af-b1fe613b9c11", + "width": 70, + "x": 490, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "41740329-469a-4a06-a44d-691b7be807b5", + "width": 70, + "x": 350, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5a1d06b-cc36-4b13-9ec7-e8c8e89b4b2e", + "width": 70, + "x": 210, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85b5b2f7-5dd2-4000-90c6-89738792b208", + "width": 70, + "x": 280, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1ab7c020-60c5-48ab-9fbf-9015351e020e", + "width": 70, + "x": 70, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98b54d38-f449-4742-8df6-591b6e3bc649", + "width": 70, + "x": 140, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "136c3de1-dc5a-4b96-85b2-c915013f40c4", + "width": 70, + "x": 0, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "77ec8611-ceae-4e03-bbb4-f85c8d24fb4a", + "width": 70, + "x": -140, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "98d1041b-497f-43dd-aaef-f809e83c7b4a", + "width": 70, + "x": -70, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "78fd1653-ceb1-4c1d-9b71-fc2b0f7ec1af", + "width": 70, + "x": -280, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "33136b65-a02e-4f8c-8c71-e71c89a6633f", + "width": 70, + "x": -210, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e93db3a6-7a5c-4452-923c-edd69a7761e7", + "width": 70, + "x": -350, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ed0310f-dec5-4ef4-b04d-52aea874685c", + "width": 70, + "x": -490, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f02967aa-a453-4229-b22c-d6534c8444e6", + "width": 70, + "x": -420, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ff254f8-9e05-4174-92cd-5c181c625c77", + "width": 70, + "x": -630, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b3ce8f49-8b3b-4204-b150-9b0195291cd2", + "width": 70, + "x": -560, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1b17b1a-d6c2-4378-b2cd-463346c62059", + "width": 70, + "x": -700, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "650571d4-f621-4fa4-aa44-8cf2c0919f04", + "width": 70, + "x": -840, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1611245c-bc2e-46a3-a079-008772bb7864", + "width": 70, + "x": -770, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d44ee69d-105e-4f21-a317-7e9b0dee0d28", + "width": 70, + "x": -980, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ffbf0d5d-933d-426d-a123-cee94004f5a2", + "width": 70, + "x": -910, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ba7ba34e-adb0-44e8-9477-31846ff9aa96", + "width": 70, + "x": -1050, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7b78742f-4c55-484a-987c-98616c943f47", + "width": 70, + "x": -1190, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "62ffc145-ef8d-4c79-ac57-63de60c36dbe", + "width": 70, + "x": -1120, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3d618bcd-742f-4d91-9d83-d19d550e3e49", + "width": 70, + "x": -1330, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b23747c-9eba-4e55-a1e1-aff819eb63c8", + "width": 70, + "x": -1260, + "y": -560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "da20492f-2dd2-4a51-92ea-96177966a9b2", + "width": 70, + "x": -1330, + "y": -490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "06122561-c496-483d-8088-49580c0f56a1", + "width": 70, + "x": -1330, + "y": -350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "19bc68cf-02d1-49c0-a830-740c994872b8", + "width": 70, + "x": -1330, + "y": -420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4c74dce-ea3c-4822-bca7-32611a6144da", + "width": 70, + "x": -1400, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9910a106-0125-4601-8a39-e06519e89634", + "width": 70, + "x": -1330, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c9062d14-7ba6-4b87-8374-53f68fe934e1", + "width": 70, + "x": -1470, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01e52db8-7762-486e-b7d2-2d9bc130c5f0", + "width": 70, + "x": -1610, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f95fe236-4dd7-4d88-83e2-c6b1c03fc230", + "width": 70, + "x": -1540, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3ee84145-539e-4bc2-9fc3-607ff569e551", + "width": 70, + "x": -1750, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c0a96cd9-7cd2-4b03-84ec-8a451578092a", + "width": 70, + "x": -1680, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e74b463f-c72a-4d2a-a655-13feb0372e1d", + "width": 70, + "x": -1820, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9defc10c-44b2-4b9f-b962-11b5c45c6248", + "width": 70, + "x": -1960, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e811e998-78a2-4af3-9688-6691c988cb01", + "width": 70, + "x": -1890, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "03dbad85-4229-498f-adf4-3ed4c0dbddc8", + "width": 70, + "x": -2100, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fedf77ad-2a78-49e9-b145-793d956f9257", + "width": 70, + "x": -2030, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "bebe5ec7-e3ca-4f85-ae58-34115e8152c6", + "width": 70, + "x": -2170, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0db70097-eb8a-4757-a2de-7541bc5be232", + "width": 70, + "x": -2310, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3f1d7bf6-0002-4737-86ad-432427ae86a3", + "width": 70, + "x": -2240, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8899f4cd-3ebc-4e12-a671-c8373e8a4203", + "width": 70, + "x": -2450, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "aee826ec-8a73-4e21-be60-70786ba88d31", + "width": 70, + "x": -2380, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb3e0c4e-a7f8-4a12-8c08-59ae8d5d89e1", + "width": 70, + "x": -2520, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "039d6300-1223-43fe-942f-8ab7d93dacd2", + "width": 70, + "x": -2660, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7b70ebf-d9d3-4768-83f0-db16853a30e9", + "width": 70, + "x": -2590, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "75fed58e-85d5-47ca-bed1-d6dd79323ba0", + "width": 70, + "x": -2800, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d69e8744-1c90-414e-86d8-2a04c39ef734", + "width": 70, + "x": -2730, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "91b0cad5-809f-4833-8784-4da42b5437f7", + "width": 70, + "x": -2870, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82bafb28-25e4-4458-bc5e-a5e29759af5f", + "width": 70, + "x": -3010, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1b2711a1-b5d2-49ca-955b-d6958a17750e", + "width": 70, + "x": -2940, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f34c78c0-21dd-465e-b947-edffdee4d4b0", + "width": 70, + "x": -3150, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d38022d8-916c-46a9-b994-187d6e5e39b6", + "width": 70, + "x": -3080, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "14933627-d0d8-47de-a1f2-7ce90e1a1391", + "width": 70, + "x": -3220, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f3e85c4c-5b31-4d97-a0b7-480df8cf275e", + "width": 70, + "x": -3290, + "y": -210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2f54f34b-2c2c-4a8a-b4e2-af5d66a058ac", + "width": 70, + "x": -3290, + "y": -280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2af84e1-4e75-4c7c-afa5-e3250d07d890", + "width": 70, + "x": -3290, + "y": 1540, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1f5bfa69-943b-40dc-abdc-a33f502d923a", + "width": 70, + "x": -3290, + "y": 1400, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "641f4bd7-fe5e-4e78-9bc0-7fc5c28160cc", + "width": 70, + "x": -3290, + "y": 1470, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd43f2a6-749e-4d57-a814-4017e62a8c8e", + "width": 70, + "x": -3290, + "y": 1260, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7ea945e9-9ff4-4870-90cc-f09ce2b7248c", + "width": 70, + "x": -3290, + "y": 1330, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9cc6ab81-e4f0-48be-a8be-390e272eb779", + "width": 70, + "x": -3290, + "y": 1120, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c3076899-e1c3-43e8-bd53-875a9a70dc65", + "width": 70, + "x": -3290, + "y": 1190, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "08544fd1-0c80-4885-8e76-dba5f2fffeb5", + "width": 70, + "x": -3290, + "y": 1050, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8368e519-ba16-401e-be9c-eb0ceee1a423", + "width": 70, + "x": -3290, + "y": 910, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b53a926-6153-4a5d-9521-359778857fb9", + "width": 70, + "x": -3290, + "y": 980, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef73b9db-284a-453f-93ac-1b6b7a788e2a", + "width": 70, + "x": -3290, + "y": 770, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6ccd18e-9d6a-482c-9804-d4ad31613233", + "width": 70, + "x": -3290, + "y": 840, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a71f5853-ffb1-4cb1-b457-a283189eeaa2", + "width": 70, + "x": -3290, + "y": 700, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "139f6c0f-0131-47d5-bbc5-4a631827b0f0", + "width": 70, + "x": -3290, + "y": 560, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fa6b92d2-659e-4002-a0be-5b1a9a0a2ee2", + "width": 70, + "x": -3290, + "y": 630, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "59da5ecd-d5c7-4509-9ecb-c0702e4b00f7", + "width": 70, + "x": -3290, + "y": 420, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6d57ccba-493e-48e5-88b9-a8cb7f88aee6", + "width": 70, + "x": -3290, + "y": 490, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7828ec8f-f13c-4600-97f0-137d1b60dd0a", + "width": 70, + "x": -3290, + "y": 350, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55d5e67d-236a-4f01-a473-e9df030503c6", + "width": 70, + "x": -3290, + "y": 210, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e9c5264-0855-4510-a4c2-71aef0a65611", + "width": 70, + "x": -3290, + "y": 280, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cbac1b55-cd1a-421c-a2cb-8edf13fe245c", + "width": 70, + "x": -3290, + "y": 70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c966e96-637f-4cb5-ab3e-2023d28c61f6", + "width": 70, + "x": -3290, + "y": 140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a2122340-5e8b-4e0e-bfbe-1d4e75e08296", + "width": 70, + "x": -3290, + "y": 0, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6f8dbd7-6e16-4498-ae82-235d430d9ee7", + "width": 70, + "x": -3290, + "y": -140, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "808253ab-1c68-4d02-ac5f-ed4895b5b4b7", + "width": 70, + "x": -3290, + "y": -70, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "502e2d15-39b4-43c4-a1d3-0f0bc01d9bda", + "width": 70, + "x": -3850, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f9b701e1-4aee-43e6-8da4-5a6a7a3c7f00", + "width": 70, + "x": -3850, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "695606fe-1db6-4282-98eb-6bb19ea1fa7e", + "width": 70, + "x": -3850, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "461f5c84-d581-4efd-8159-05e66e4d62a9", + "width": 70, + "x": -3850, + "y": 3290, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d02bcdc0-8029-436f-befc-4651ad35ed1b", + "width": 70, + "x": -3850, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3101ba4d-9b0a-4eeb-9c33-6ba99cea6f8b", + "width": 70, + "x": -3850, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d96fd09f-6410-4bf0-873f-1bf766577966", + "width": 70, + "x": -3850, + "y": 3220, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f6926772-c12a-4503-8807-9e3ef4997894", + "width": 70, + "x": -3850, + "y": 3080, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "520bfb63-3d3b-4d28-8f17-38c142e594ed", + "width": 70, + "x": -3850, + "y": 2940, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "43a406a1-0a44-4d51-97dc-a31ec8b46650", + "width": 70, + "x": -3850, + "y": 3010, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18d923ce-cc0c-45b7-917b-b84976e470fe", + "width": 70, + "x": -3850, + "y": 2800, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1640d36a-f3e1-401f-8cd0-af50b64b8460", + "width": 70, + "x": -3850, + "y": 2870, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a1f540b5-9e0e-44ca-b97b-68fb732286d3", + "width": 70, + "x": -3850, + "y": 2730, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "104d8795-f8d8-4314-a6d4-fb903f500948", + "width": 70, + "x": -3850, + "y": 2590, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e1e019ef-38d7-4086-bdc8-b5bad935c164", + "width": 70, + "x": -3850, + "y": 2660, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d803da1b-c82d-48c5-9726-ac630b99f8e1", + "width": 70, + "x": -3850, + "y": 2450, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4843dfc7-a004-4c0b-bfdf-828bd7948df3", + "width": 70, + "x": -3850, + "y": 2520, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3667ee87-b3fa-4c4d-97ea-666bb0422d80", + "width": 70, + "x": -3850, + "y": 2380, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a3387ff-07dd-4a4a-9b28-251ad71299f3", + "width": 70, + "x": -3850, + "y": 2240, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e46099d7-9249-4945-bec0-3d602a52397c", + "width": 70, + "x": -3850, + "y": 2310, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4a8f6763-bf36-4072-bfef-fcd29cef11c6", + "width": 70, + "x": -3850, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "52196847-1b63-4e8b-a51a-cb067fdb6587", + "width": 70, + "x": -3850, + "y": 2170, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cc6eaf67-2645-4284-82f8-5875b2044213", + "width": 70, + "x": -3780, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "981a61ec-42b8-4948-a979-570d1b4138c4", + "width": 70, + "x": -3640, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "05e0f8b4-9cef-4376-bb44-c62794de2e1f", + "width": 70, + "x": -3710, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2e5ba6f9-5e45-447d-9f94-8226ca186213", + "width": 70, + "x": -3290, + "y": 1960, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "64369bf7-1b3d-45c6-95dc-1d6a36eea540", + "width": 70, + "x": -3290, + "y": 1820, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "31bd6ae9-29f6-4f9d-a028-6b8669707c94", + "width": 70, + "x": -3290, + "y": 1890, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3524fbb1-ec7e-4967-b2b0-3572615b1d30", + "width": 70, + "x": -3290, + "y": 1680, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7e8c4be4-e09e-4aee-8e3d-d931b6fe090b", + "width": 70, + "x": -3290, + "y": 1750, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fd69541d-ec74-4cc1-b9f5-d5361c707e5d", + "width": 70, + "x": -3290, + "y": 1610, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cd0fbc8b-3389-4d59-a0ee-80daaa3321e9", + "width": 70, + "x": -3290, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "85269525-53e0-47f9-8095-2a9d0e278a24", + "width": 70, + "x": -3570, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "398ba9c3-3b93-4aca-be59-d6b06429d715", + "width": 70, + "x": -3290, + "y": 2030, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01d0b9e9-41ab-4e56-bc13-063bbdc601b4", + "width": 70, + "x": -3430, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "addba33e-2474-4fdb-99d3-0971b560b6cc", + "width": 70, + "x": -3500, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "65327d57-0519-4532-9b40-dce324341caa", + "width": 70, + "x": -3360, + "y": 2100, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6e99730b-5365-45bd-8bba-bda0adb591de", + "width": 70, + "x": -350, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c6078403-6860-45f3-885f-8c46e25f5f04", + "width": 70, + "x": -350, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d834c819-7174-4c2e-8519-53e4c41d7ae4", + "width": 70, + "x": -420, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9746178d-0016-4455-9589-a45c4dfeb0ad", + "width": 70, + "x": -350, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2a994d75-2502-4ff8-9673-2c5a8c186a80", + "width": 70, + "x": -490, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5e780ceb-1c86-47f3-818b-39a949bb900e", + "width": 70, + "x": -630, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e588f9b6-17ba-4dee-9616-9c44aaa4ad07", + "width": 70, + "x": -560, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d3cd763c-3a87-4168-9045-d8104692b29a", + "width": 70, + "x": -770, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a0b822e1-1c2f-47be-aeb7-37c72973580f", + "width": 70, + "x": -700, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c608f7fb-2e15-45fa-950e-490bbcdb904d", + "width": 70, + "x": -840, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6b1c159a-827a-4993-8827-7fa939453849", + "width": 70, + "x": -980, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4bd34845-b206-439c-87f4-4559b45288fc", + "width": 70, + "x": -910, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "681936f0-0740-4df4-8a8b-ec8b26b43717", + "width": 70, + "x": -1120, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1e39835a-c41e-4e9f-9914-63fe5d475191", + "width": 70, + "x": -1050, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c79e4d1c-f29c-4529-bb17-e946a1ca5886", + "width": 70, + "x": -1190, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e9dcc459-588e-4d90-a699-0783d330a1a9", + "width": 70, + "x": -1330, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "49a56c43-3abb-4376-b4f0-0eebe197b97f", + "width": 70, + "x": -1260, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6ecbaa4-6fe4-4674-8abc-16810882f095", + "width": 70, + "x": -1470, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6ba78387-45f8-4da0-8522-2257f3f7f70b", + "width": 70, + "x": -1400, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9c40dbf1-7e7a-49d2-aa1f-6e1fa812bbe4", + "width": 70, + "x": -1540, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8b119512-90fe-4e41-9020-9986f46cec15", + "width": 70, + "x": -1680, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "222468dd-48f4-4733-a462-20502de63c7e", + "width": 70, + "x": -1610, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d2bff3fe-08fb-4dff-942d-f2701ad5ac73", + "width": 70, + "x": -1820, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "55dc1d9a-a750-4aa4-b98a-670c6ee64126", + "width": 70, + "x": -1750, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "350420a3-639f-4254-bed6-c175787bb722", + "width": 70, + "x": -1890, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e0c45e33-91ff-4a7b-8b7b-c66b39b83c63", + "width": 70, + "x": -2030, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "232f4fdb-207f-4fff-a634-884cb463dc08", + "width": 70, + "x": -1960, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0c6a1c43-374a-4b4b-96b4-518ff6748d78", + "width": 70, + "x": -2170, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "68e95d90-bea7-4b2d-b8b5-ed676543a301", + "width": 70, + "x": -2100, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2320340-830f-44e8-bb6b-d770ec9dfd34", + "width": 70, + "x": -2240, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "176f09b6-32b3-4892-a626-99bf335b06c4", + "width": 70, + "x": -2380, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a570c37-c3b2-42d0-b784-5fcc36720b52", + "width": 70, + "x": -2310, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6cad8849-c196-4793-8e5b-6ee74a4c3f19", + "width": 70, + "x": -2520, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4b633f17-41be-499f-85e2-df4cce4c64b2", + "width": 70, + "x": -2450, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "6a2e934f-52c8-44c4-b05b-40c8e4b42ece", + "width": 70, + "x": -2590, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "2c6e3bed-d4c6-4915-a160-e7fa043d2fdc", + "width": 70, + "x": 1610, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ace4863f-fcd7-42e8-8f48-594c7dfc8daa", + "width": 70, + "x": 1680, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec7a4f3f-7f12-41df-b88e-ea24bb690a79", + "width": 70, + "x": 1470, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "58359a24-e04a-44c9-9e37-2b73e9ffb749", + "width": 70, + "x": 1540, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7f4ff474-9007-4114-9252-153e2b20fee9", + "width": 70, + "x": 1400, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "f01b19cb-e6e2-46a0-8ca8-85df499105bb", + "width": 70, + "x": 1260, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "01c99f14-1b12-4e1d-99b5-a5a0e3e8d4bd", + "width": 70, + "x": 1330, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "83f71c41-ba48-4b83-85c7-c45f1ff390d9", + "width": 70, + "x": 1120, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "cf36c780-6e3e-4fbc-8976-b34764ccf629", + "width": 70, + "x": 1190, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d02beee8-b3a8-4690-8c8e-020251c71e7b", + "width": 70, + "x": 1050, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "09f4f831-1b0a-47a3-91eb-7bfa4d200e0f", + "width": 70, + "x": 910, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "86462c1c-c6b3-4cc8-be86-1e51c1584955", + "width": 70, + "x": 980, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8c263d25-3e7f-45b8-bc9e-5583d7fc1f33", + "width": 70, + "x": 770, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "79632306-a03c-41d3-b7a9-73ba6e58e09e", + "width": 70, + "x": 840, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9fca6bee-89e2-4750-8a9c-e7d15702eec8", + "width": 70, + "x": 700, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "35613c0c-25b5-4b14-a401-550b69b57c1e", + "width": 70, + "x": 560, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e37b777-baa1-4614-ab4f-cb0d776cf9ba", + "width": 70, + "x": 630, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "73fcfb7a-b7c1-4174-8147-891dc0c61e43", + "width": 70, + "x": 420, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "04c7421e-225c-4cbb-ad4e-0c38bc359309", + "width": 70, + "x": 490, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "afc6404c-47f0-4a8e-8f72-7e3ef9a6228f", + "width": 70, + "x": 350, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "47eb267b-85db-48af-ac8e-1d1124b49d9d", + "width": 70, + "x": 210, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ee039567-9c82-412b-8479-c8bdbd5e13cc", + "width": 70, + "x": 280, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d81f0938-63c4-483c-9002-67029c9b6db1", + "width": 70, + "x": 70, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "99f2e601-001b-4d9e-8051-757944e633a7", + "width": 70, + "x": 140, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3c5a965a-0963-40aa-a89f-92c7d6c607d9", + "width": 70, + "x": 0, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "fb82874a-05c0-46c4-a774-d40f1a8cef74", + "width": 70, + "x": -140, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d43b1f47-627d-48c8-8567-444c0ec6d70f", + "width": 70, + "x": -70, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "7d8f2a84-bcce-4ea9-95b3-817a192e61e5", + "width": 70, + "x": -280, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "5a4a0982-f49f-4bbe-8e28-204e8c88f840", + "width": 70, + "x": -210, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "0ad82d6e-20fa-442a-adbe-998e513a0c36", + "width": 70, + "x": 1960, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "69c34886-cde4-463b-b857-6538e1f41a93", + "width": 70, + "x": 1960, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "351797a3-4de9-4d66-a015-aa06cd66b580", + "width": 70, + "x": 1960, + "y": 3360, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "39c1a3f2-d332-4bf6-a41b-52574b2f27b4", + "width": 70, + "x": 1820, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d44e6334-aded-43ac-93ac-0eb3f598d3eb", + "width": 70, + "x": 1890, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "00a02024-e532-4655-af85-a74270acbf01", + "width": 70, + "x": 1750, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ef9d8ffc-912a-4096-9ce4-8043a8ff8bdc", + "width": 70, + "x": 1960, + "y": 3290, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f9bcaa1-ac0a-4b8e-9133-2001404aabf1", + "width": 70, + "x": 1960, + "y": 3220, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e5d3a129-cb0e-48a3-80f7-2fa576fc23f4", + "width": 70, + "x": 1960, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 7 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b32bc620-2222-4888-a0ba-b142ceed1637", + "width": 70, + "x": 2030, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a1b8e3d-f11d-45fc-94eb-5810ee888b43", + "width": 70, + "x": 2800, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d46a9f61-cc6b-4b05-a609-3d7d4c3817d0", + "width": 70, + "x": 2870, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e8305b72-1a22-4987-a2fa-f04b79359920", + "width": 70, + "x": 2660, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "4343f336-a090-4d28-bdba-64e05712ae79", + "width": 70, + "x": 2730, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "d540e6d3-4dd8-4484-83bc-bea300390f6c", + "width": 70, + "x": 2590, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "a9c868bf-326b-4718-8f5d-90de952da1e3", + "width": 70, + "x": 2450, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "9706fd1c-184d-402e-981c-45b5cd31039c", + "width": 70, + "x": 2520, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "51304909-34d5-4f59-b609-3143f9508c4a", + "width": 70, + "x": 2310, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "dafb5212-5c26-4e94-aaee-09c94d7a696c", + "width": 70, + "x": 2380, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "238fcdd8-4d13-42bb-86ab-935e9b228e43", + "width": 70, + "x": 2240, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "3e70ab6c-9df6-4928-b6c2-052a7d49bf22", + "width": 70, + "x": 2100, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "16986a5c-fee9-424b-ad18-9e46a17ff99b", + "width": 70, + "x": 2170, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c4ce0f88-8e56-4a36-96fa-3eefb4c60fdc", + "width": 70, + "x": 3010, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8f7b4117-cdcc-4c2e-8cd3-1fd4ba8d09b5", + "width": 70, + "x": 3080, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "e7a1b4fc-6282-4b94-8222-0c6973366c0e", + "width": 70, + "x": 2940, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b6e0c245-5d4f-4fd7-a054-12b98ce624e3", + "width": 70, + "x": 3150, + "y": 3150, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "8290bcce-916f-48f4-81f0-085627d08380", + "width": 70, + "x": -2590, + "y": 3430, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "1a53493b-fa5f-440b-ac93-2643b3aeb6af", + "width": 70, + "x": -2590, + "y": 3500, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "82969525-14e9-44c3-97f7-67304fa82939", + "width": 70, + "x": -2590, + "y": 3570, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "b2120af8-ee84-4fd1-9b93-3c89785c2020", + "width": 70, + "x": -2590, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c46a8dbb-af7b-44a3-bfcf-64363c3f3a1b", + "width": 70, + "x": -2800, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c33434b9-dca2-4b0c-8eaa-06143f606aa3", + "width": 70, + "x": -2730, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "903eece9-eb84-4a9b-af57-7da82e81fdad", + "width": 70, + "x": -2660, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "624a18db-e366-4786-b302-e8025e95804b", + "width": 70, + "x": -3640, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 4 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 180, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "18caad8d-db60-44a7-97da-14ea41c53569", + "width": 70, + "x": -3850, + "y": 3570, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "ec9f7581-17fd-4548-a3a3-f9daaf2e4424", + "width": 70, + "x": -3780, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 90, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "66c54c32-a8d2-4eb3-8bb1-6713f5257cdb", + "width": 70, + "x": -3710, + "y": 3640, + "zOrder": 12616, + "numberProperties": [ + { + "name": "animation", + "value": 6 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3606b58e-ebda-4f4d-a9f0-d71800e92246", + "width": 2380, + "x": -350, + "y": 3500, + "zOrder": 126, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 350, + "layer": "", + "name": "Water_cover", + "persistentUuid": "54c0db0a-e705-4967-bfd0-c5605536b4c8", + "width": 70, + "x": 1960, + "y": 3150, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "ba7f2656-6d9f-4069-8640-c52fe8cca255", + "width": 1260, + "x": 2030, + "y": 3150, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2030, + "layer": "", + "name": "Water_cover", + "persistentUuid": "8acc75b9-9d6b-46b2-8b1c-e0855d4af942", + "width": 70, + "x": 3220, + "y": 1120, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "92c2f4ec-4e11-42a2-a2dc-a43b4ff2ca86", + "width": 280, + "x": -2800, + "y": 3640, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 280, + "layer": "", + "name": "Water_cover", + "persistentUuid": "1e3fd704-fd4e-4cb8-b112-0d6fd90890f3", + "width": 70, + "x": -2590, + "y": 3360, + "zOrder": 0, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "3025dfca-2a78-42fe-88ea-f5b5201ce6a3", + "width": 2170, + "x": -2520, + "y": 3360, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "f7cde56a-8c6b-4fae-8998-40cd3a997278", + "width": 210, + "x": 3220, + "y": 1120, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1680, + "layer": "", + "name": "Water_cover", + "persistentUuid": "48dcf900-a30a-4257-af94-b974326e3bf8", + "width": 70, + "x": 3360, + "y": -560, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "25fb9619-1f9c-4f5b-89c7-51ae50950ca4", + "width": 4690, + "x": -1330, + "y": -560, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "Water_cover", + "persistentUuid": "8d9c46da-810e-41b0-8b1e-ba8398e78359", + "width": 70, + "x": -1330, + "y": -490, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "d8d703b7-023b-4239-9846-13360a5bd1cb", + "width": 2030, + "x": -3290, + "y": -280, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 2380, + "layer": "", + "name": "Water_cover", + "persistentUuid": "bea045f7-b983-4e23-a5ac-50bd4c1a44ac", + "width": 70, + "x": -3290, + "y": -210, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "56d52b0e-7060-4707-8279-45068ec4eefc", + "width": 560, + "x": -3850, + "y": 2100, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 1540, + "layer": "", + "name": "Water_cover", + "persistentUuid": "edcb6f9a-2c16-46a5-83ff-a2281a89d842", + "width": 70, + "x": -3850, + "y": 2170, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "f99e086e-ba59-46fa-a94d-6cfd1a23bbca", + "width": 210, + "x": -3780, + "y": 3640, + "zOrder": 1, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Water_cover", + "persistentUuid": "0a769acf-fdf5-4ef4-b205-5b2412eac96b", + "width": 70, + "x": -350, + "y": 3430, + "zOrder": 12, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "308ad9c0-3704-4801-8827-26bcd1798c33", + "width": 70, + "x": 420, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "60e9f057-9230-48a0-b00d-4c104b1d5577", + "width": 70, + "x": 490, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "sand", + "persistentUuid": "c969c77c-759c-48c4-93c5-28f7f7c5026c", + "width": 70, + "x": 560, + "y": 2240, + "zOrder": 114, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "weapon_icons", + "persistentUuid": "e1f10fa7-78d4-4f19-91f7-1e2a6439f087", + "width": 0, + "x": 1170, + "y": 67, + "zOrder": 12643489, + "numberProperties": [ + { + "name": "animation", + "value": 2 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "Health", + "persistentUuid": "51c740a3-2016-4425-8029-6911b124bb8b", + "width": 0, + "x": 0, + "y": 70, + "zOrder": 12643517, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "AmmoText", + "persistentUuid": "c4aa480c-5f33-44be-bff1-b7581f5de51f", + "width": 0, + "x": 0, + "y": 490, + "zOrder": 12643519, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "weaponholding", + "persistentUuid": "13d249b9-06b6-4f5a-b593-79789f2fe2f6", + "width": 0, + "x": 0, + "y": 420, + "zOrder": 12643549, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "", + "name": "mele2", + "persistentUuid": "09afe30b-b74c-417f-a4d0-68548d755fec", + "width": 0, + "x": 70, + "y": 1330, + "zOrder": 12643551, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": false, + "height": 0, + "layer": "GUI", + "name": "You_lose", + "persistentUuid": "f744036a-8f49-422b-a95e-88395ebaf4df", + "width": 0, + "x": 375, + "y": 280, + "zOrder": 12643552, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 210, + "layer": "", + "name": "door", + "persistentUuid": "99f5ac72-0a60-4827-987e-71768de59cb4", + "width": 140, + "x": -289, + "y": 780, + "zOrder": 12643562, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "2" + }, + { + "name": "Direction", + "type": "string", + "value": "-90" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 193, + "layer": "", + "name": "door", + "persistentUuid": "a78462a8-150c-4ca9-9f1d-e2f13572f6d0", + "width": 121, + "x": -2373, + "y": 1886, + "zOrder": 12643563, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "3" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 168, + "layer": "", + "name": "door", + "persistentUuid": "76cea113-4a71-4ce7-bce5-03bf1558c408", + "width": 205, + "x": -2448, + "y": 893, + "zOrder": 12643564, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "5" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 127, + "layer": "", + "name": "door", + "persistentUuid": "7eb3c7a5-cadf-4a9f-a535-1319d18bb8ba", + "width": 231, + "x": -1262, + "y": 1966, + "zOrder": 12643565, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "4" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 142, + "layer": "", + "name": "door", + "persistentUuid": "ec3d7b94-b41b-4a39-bb15-40481df19f10", + "width": 139, + "x": -1176, + "y": 1325, + "zOrder": 12643566, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "4" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 194, + "layer": "", + "name": "door", + "persistentUuid": "8515d549-c590-418a-af65-49d12b6ab497", + "width": 124, + "x": 1938, + "y": 1129, + "zOrder": 12643567, + "numberProperties": [ + { + "name": "animation", + "value": 0 + } + ], + "stringProperties": [], + "initialVariables": [ + { + "name": "Room", + "type": "string", + "value": "6" + } + ] + }, + { + "angle": 0, + "customSize": true, + "height": 1289, + "layer": "Fade", + "name": "Transitions", + "persistentUuid": "d9fdfe8f-cca3-408f-ada5-d6011fc9140a", + "width": 1994, + "x": 0, + "y": 0, + "zOrder": 12643568, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 560, + "layer": "", + "name": "ground_1", + "persistentUuid": "24e4b2be-1698-4a33-a094-f4f5df270ffd", + "width": 1680, + "x": -910, + "y": -214, + "zOrder": 4, + "numberProperties": [], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "5c3e7176-be09-41ac-8269-d3ace2f2371d", + "width": 70, + "x": 0, + "y": 3010, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 3 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": 0, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "237d1536-4fd1-4a5c-8a73-1cd4ed60add0", + "width": 70, + "x": 0, + "y": 2030, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + }, + { + "angle": -90, + "customSize": true, + "height": 70, + "layer": "", + "name": "Fences", + "persistentUuid": "c605b6ec-1edf-495c-8d29-d5c714c3a0ea", + "width": 70, + "x": 1680, + "y": 2800, + "zOrder": 115, + "numberProperties": [ + { + "name": "animation", + "value": 5 + } + ], + "stringProperties": [], + "initialVariables": [] + } + ], + "objects": [ + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "grass", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_01.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_02.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_03.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\foliage\\grass\\tile_04.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "grass_tiled", + "texture": "assets\\foliage\\grass\\tile_01.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Placeholder", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "TopDownMovement", + "type": "TopDownMovementBehavior::TopDownMovementBehavior", + "deceleration": 800, + "acceleration": 400, + "maxSpeed": 200, + "rotateObject": false, + "allowDiagonals": true, + "angleOffset": 0, + "angularMaxSpeed": 500, + "ignoreDefaultControls": true + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.3, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\placeholder.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Niko", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_stand.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.3, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_walk_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_walk_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\Single_pistol.png", + "points": [ + { + "name": "shoot", + "x": 58, + "y": 42 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 26 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\Machine_gun_hold.png", + "points": [ + { + "name": "shoot", + "x": 56, + "y": 27 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 21 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_flametrhower.png", + "points": [ + { + "name": "f_t_collision", + "x": 47.5, + "y": 31 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 21 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun4", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_sniper.png", + "points": [ + { + "name": "shoot", + "x": 61, + "y": 28 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 17, + "y": 22 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "Gun5-loaded", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", + "points": [ + { + "name": "shoot", + "x": 100, + "y": 45 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 25, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "mele1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_tazer.png", + "points": [ + { + "name": "hitbox", + "x": 45, + "y": 33 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "phone", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 24, + "y": 27 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_phone_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "swim1", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.5, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "swim2", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.5, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_swim_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "gun5 unloaded", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\manBlue_rocketlauncher.png", + "points": [ + { + "name": "shoot", + "x": 101, + "y": 45 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 22, + "y": 27 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "mele2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a1.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a2.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 19, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a3.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a4.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\knife_a5.png", + "points": [ + { + "name": "slash", + "x": 51, + "y": 30 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 18, + "y": 26 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_40.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_37.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_41.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_91.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_62.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_36.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_35.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_93.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_66.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_63.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_64.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_95.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_38.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_68.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "roof_tops", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\rooftop\\roof_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 4.505209922790527, + "y": 1.6666699647903442 + }, + { + "x": 189.5050048828125, + "y": 0 + }, + { + "x": 184.5050048828125, + "y": 378.3330078125 + }, + { + "x": -0.49479201436042786, + "y": 375 + } + ], + [ + { + "x": 194.5050048828125, + "y": 100 + }, + { + "x": 464.5050048828125, + "y": 108.33300018310547 + }, + { + "x": 467.8389892578125, + "y": 271.6669921875 + }, + { + "x": 187.83900451660156, + "y": 276.6669921875 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_10.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "roof_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_14_horizontal.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_14.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_16.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_17.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_18.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_19.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_21.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_22.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_23.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_24.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\rooftop\\roof_25.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sand", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\tile_06.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\tile_05.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\side_walk\\sand.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\sand\\dirt.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_14.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_18.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_17.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_19.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\map_edge\\tile_20.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "door", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "Room", + "type": "string", + "value": "-1" + }, + { + "name": "Direction", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\door.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "flame_thrower_fire_collision", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\flame thrower fire collision.png", + "points": [ + { + "name": "CenterBurning", + "x": 50, + "y": 16 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 16 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 16 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "crossair", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crossair_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair010", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair_3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair060", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "crosshair008", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\crossair\\crosshair_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 16, + "y": 16 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Single_pistol_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 11 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 11 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun3", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\flamethrower.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun4", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\sniper.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 10 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 10 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Machine_gun_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 6 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 6 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "tazer_hitbox", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.1429, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\tazer_Hitbox\\tazer_hitbox=2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 2.5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "gun5", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Rocket_launcher_item.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 7 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 7 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\gun\\Rocket_launcher_item - rocket out.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mele1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\mele\\tazer.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 4 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 4 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mele2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\weapons\\mele\\knife.png", + "points": [], + "originPoint": { + "name": "origine", + "x": -15, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": -15, + "y": 4.852940082550049 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 0 + }, + { + "x": 14.640199661254883, + "y": 10.606100082397461 + }, + { + "x": 22, + "y": 22 + }, + { + "x": 10.09469985961914, + "y": 15.15149974822998 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Slash1", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\weapons\\slash.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31.77560043334961, + "y": 12.954500198364258 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 31.320999145507812, + "y": 12.954500198364258 + }, + "customCollisionMask": [ + [ + { + "x": 15.028800010681152, + "y": 3.6842100620269775 + }, + { + "x": 34.76559829711914, + "y": 0 + }, + { + "x": 58.18669891357422, + "y": 15 + }, + { + "x": 33.976200103759766, + "y": 4.473680019378662 + }, + { + "x": 19.765600204467773, + "y": 6.8421101570129395 + }, + { + "x": 3.9761500358581543, + "y": 18.157899856567383 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "ammo", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "ammo1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletBlueSilver_outline.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "ammo4", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\Rocket_ammo.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "energy", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "ammo1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\energy.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 3 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 3 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Fences", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "Id", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (21).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26.121299743652344, + "y": 26.470600128173828 + }, + { + "x": 63.474300384521484, + "y": 26.470600128173828 + }, + { + "x": 63.76839828491211, + "y": 37.058799743652344 + }, + { + "x": 26.7096004486084, + "y": 37.647098541259766 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (2).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0.23897099494934082, + "y": 26 + }, + { + "x": 63.76839828491211, + "y": 26 + }, + { + "x": 63.474300384521484, + "y": 37 + }, + { + "x": 0.23897099494934082, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (27).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ], + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 26, + "y": 26 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (1).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (9).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ], + [ + { + "x": 0, + "y": 26 + }, + { + "x": 26, + "y": 26 + }, + { + "x": 26, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (5).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 26 + }, + { + "x": 64, + "y": 26 + }, + { + "x": 64, + "y": 37 + }, + { + "x": 26, + "y": 37 + } + ], + [ + { + "x": 26, + "y": 40 + }, + { + "x": 37, + "y": 40 + }, + { + "x": 37, + "y": 64 + }, + { + "x": 26, + "y": 64 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (23).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 26, + "y": 0 + }, + { + "x": 37, + "y": 0 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 26, + "y": 37 + } + ], + [ + { + "x": 37, + "y": 26 + }, + { + "x": 64, + "y": 26 + }, + { + "x": 64, + "y": 37 + }, + { + "x": 37, + "y": 37 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\fence\\element (22).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 0, + "y": 26 + }, + { + "x": 37, + "y": 26 + }, + { + "x": 37, + "y": 37 + }, + { + "x": 0, + "y": 37 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road_block", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road_block\\fenceRed.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road_block\\fenceYellow.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "bullet", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [ + { + "name": "bullet", + "type": "string", + "value": "0" + } + ], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "bullet1", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellowSilver_outline.png", + "points": [ + { + "name": "effects_bullet", + "x": 18.113399505615234, + "y": 2.9629600048065186 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "bullet2", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\bulletYellow_outline.png", + "points": [ + { + "name": "effects_bullet", + "x": 18.113399505615234, + "y": 2.9629600048065186 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "bullet3", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\weapons\\bullet\\rocket_launcher_bullet.png", + "points": [ + { + "name": "effects_bullet", + "x": 31.95669937133789, + "y": 3.863640069961548 + } + ], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 0, + "y": 5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "AmmoText", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" + } + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "weaponholding", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "weapon: [weapon]", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "weapon: [weapon]", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "156;156;156" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "foliage", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 10, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\treeLarge.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 48, + "y": 52.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 33, + "y": 37.5 + }, + { + "x": 65, + "y": 37.5 + }, + { + "x": 65, + "y": 69.5 + }, + { + "x": 33, + "y": 69.5 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 10, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\treeSmall.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 43.5, + "y": 43.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 33, + "y": 37.5 + }, + { + "x": 65, + "y": 37.5 + }, + { + "x": 65, + "y": 69.5 + }, + { + "x": 33, + "y": 69.5 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\tile_183.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31, + "y": 33.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 32, + "y": 32.5 + }, + "customCollisionMask": [ + [ + { + "x": 20, + "y": 20 + }, + { + "x": 44, + "y": 20 + }, + { + "x": 44, + "y": 44 + }, + { + "x": 20, + "y": 44 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\foliage\\tree\\tile_186.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 31, + "y": 32.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 20, + "y": 20 + }, + { + "x": 44, + "y": 20 + }, + { + "x": 44, + "y": 44 + }, + { + "x": 20, + "y": 44 + } + ] + ] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "house_enter", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\door.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "Water_cover", + "texture": "assets\\water\\water_1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "InOnScreen", + "type": "IsOnScreen::InOnScreen" + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "Water", + "texture": "assets\\water\\water_1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sports_equipments_movable", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Bounce", + "type": "Bounce::Bounce", + "OldX": 0, + "OldY": 0, + "OldForceAngle": 0, + "OldForceLength": 0, + "NormalAngle": 0 + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.2, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\ball\\ball_basket2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 8.78396987915039, + "y": 9.021739959716797 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 17.428600311279297, + "y": 12.857099533081055 + }, + { + "x": 14.571399688720703, + "y": 16.71430015563965 + }, + { + "x": 9.571430206298828, + "y": 17.857099533081055 + }, + { + "x": 3.714289903640747, + "y": 16.428600311279297 + }, + { + "x": 0.5714290142059326, + "y": 12 + }, + { + "x": 0.5714290142059326, + "y": 6.857140064239502 + }, + { + "x": 2.285710096359253, + "y": 2.571429967880249 + }, + { + "x": 6.714290142059326, + "y": 0.7142860293388367 + }, + { + "x": 11, + "y": 0.2857140004634857 + }, + { + "x": 15.285699844360352, + "y": 2.857140064239502 + }, + { + "x": 17.857099533081055, + "y": 6.142859935760498 + } + ] + ] + }, + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\ball\\ball_basket4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 8.78396987915039, + "y": 9.021739959716797 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 17.428600311279297, + "y": 12.857099533081055 + }, + { + "x": 14.571399688720703, + "y": 16.71430015563965 + }, + { + "x": 9.571430206298828, + "y": 17.857099533081055 + }, + { + "x": 3.714289903640747, + "y": 16.428600311279297 + }, + { + "x": 0.5714290142059326, + "y": 12 + }, + { + "x": 0.5714290142059326, + "y": 6.857140064239502 + }, + { + "x": 2.285710096359253, + "y": 2.571429967880249 + }, + { + "x": 6.714290142059326, + "y": 0.7142860293388367 + }, + { + "x": 11, + "y": 0.2857140004634857 + }, + { + "x": 15.285699844360352, + "y": 2.857140064239502 + }, + { + "x": 17.857099533081055, + "y": 6.142859935760498 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "sports_equipments", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\post\\element (77).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [ + [ + { + "x": 30, + "y": 14 + }, + { + "x": 64, + "y": 25 + }, + { + "x": 64, + "y": 40 + }, + { + "x": 31, + "y": 49 + } + ] + ] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": true, + "image": "assets\\sport\\post\\element (65).png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "ground_1", + "texture": "assets\\sport\\ground\\ground_beige.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "ground_elements", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sport\\ground_elements\\element_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": false, + "emitterAngleA": 0, + "emitterAngleB": 20, + "emitterForceMax": 30, + "emitterForceMin": 23, + "flow": 12, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 300000, + "name": "flame_thrower_fire_secondary", + "particleAlpha1": 200, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 168, + "particleBlue2": 8, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 245, + "particleGreen2": 43, + "particleLifeTimeMax": 0.5, + "particleLifeTimeMin": 0.20000000298023224, + "particleRed1": 255, + "particleRed2": 214, + "particleSize1": 40, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": -1, + "textureParticleName": "assets\\particles\\FireParticle.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 5, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": false, + "emitterAngleA": 0, + "emitterAngleB": 20, + "emitterForceMax": 300, + "emitterForceMin": 230, + "flow": 120, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 3000000, + "name": "flame_thrower_fire", + "particleAlpha1": 200, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 168, + "particleBlue2": 8, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 245, + "particleGreen2": 43, + "particleLifeTimeMax": 0.5, + "particleLifeTimeMin": 0.20000000298023224, + "particleRed1": 255, + "particleRed2": 214, + "particleSize1": 40, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": -1, + "textureParticleName": "assets\\particles\\FireParticle.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 5, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "reloading", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": { + "b": 112, + "g": 112, + "r": 112 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": "112;112;112" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Phone", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 1, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_off.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.0625, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + }, + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_lock_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_app.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "Wheel_info", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": { + "b": 156, + "g": 156, + "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "deco", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\deco\\deco_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "trash_movable", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Bounce", + "type": "Bounce::Bounce", + "OldX": 0, + "OldY": 0, + "OldForceAngle": 0, + "OldForceLength": 0, + "NormalAngle": 0 + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_side_damaged.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGreen_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_sde_rust.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelGrey_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelRed_side.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\barrelRed_up.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\oil.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\sandbagBeige.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\multipurpose\\sandbagBrown.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 85, + "emitterForceMin": 45, + "flow": 41, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 5, + "name": "brown_leaves_particle", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 45, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 51, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 51, + "particleGreen2": 255, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 1.5, + "particleRed1": 255, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": 5, + "textureParticleName": "assets\\foliage\\leaves\\treeBrown_leaf.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 3, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 85, + "emitterForceMin": 45, + "flow": 41, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 5, + "name": "green_leaves_particle", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 45, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 51, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 51, + "particleGreen2": 255, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 1.5, + "particleRed1": 255, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 3, + "rendererParam2": 1, + "rendererType": "Quad", + "tank": 5, + "textureParticleName": "assets\\foliage\\leaves\\treeGreen_leaf.png", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 3, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "bridge", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\bridge\\bridge.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_1", + "texture": "assets\\Road\\road\\tile_35-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "road_2", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\Road\\road\\tile_62.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "concrete_1", + "texture": "assets\\Road\\concrete\\concrete.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "hidden_separate", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "hidden_separate", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\hidden_separate-1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_3", + "texture": "assets\\Road\\road\\tile_37-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "phone_wifi", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 2 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 8 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\wifi_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 11 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "phone_battery", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_0.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_2.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\phone_battery_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "assetStoreId": "", + "bold": true, + "italic": false, + "name": "phone_time", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "string": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": { + "b": 255, + "g": 255, + "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": "255;255;255" + } + }, + { + "assetStoreId": "", + "height": 32, + "name": "road_4", + "texture": "assets\\Road\\road\\tile_63-1.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "beach_sand_1", + "texture": "assets\\Road\\map_edge\\tile_15.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "beach_sand_2", + "texture": "assets\\Road\\map_edge\\tile_19.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "sand_1", + "texture": "assets\\Road\\side_walk\\sand.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "height": 32, + "name": "sand_2", + "texture": "assets\\Road\\map_edge\\tile_16.png", + "type": "TiledSpriteObject::TiledSprite", + "width": 32, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Pointer", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": true, + "timeBetweenFrames": 0.0714, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_3.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_4.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_5.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_6.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\pointer_7.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 25, + "y": 23.5 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "weapon_icons", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\tazer_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\sniper_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + }, + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\UI\\weapon_icons\\rocket_launcher_icon.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 73, + "y": 0 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 73, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "NewObject", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [] + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "mouse_point", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "mouse_point", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\sprite_objects\\mouse_point-1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 0, + "y": 0 + }, + "centerPoint": { + "automatic": true, + "name": "centre", + "x": 0, + "y": 0 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + }, + { + "additive": true, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 360, + "emitterForceMax": 300, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 8000, + "name": "bullet_destroy_rocket", + "particleAlpha1": 255, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 5, + "particleAngle2": 100, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 1, + "particleBlue2": 0, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 58, + "particleGreen2": 235, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 0.5, + "particleRed1": 83, + "particleRed2": 255, + "particleSize1": 100, + "particleSize2": 125, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 200, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 75, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 150, + "name": "bullet_destroy_machine", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 45, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 110, + "name": "bullet_destroy_sniper", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 0.800000011920929, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 25, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 45, + "emitterForceMax": 120, + "emitterForceMin": 35, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 135, + "name": "bullet_destroy_pistol", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 35, + "particleBlue2": 3, + "particleGravityX": 0, + "particleGravityY": 0, + "particleGreen1": 166, + "particleGreen2": 159, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 245, + "particleRed2": 173, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 40, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 35, + "emitterForceMax": 300, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect_rocket", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 50, + "particleGravityY": 50, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 2, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 0, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 18, + "emitterForceMax": 200, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect_sniper", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 100, + "particleGravityY": 100, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "additive": false, + "assetStoreId": "", + "destroyWhenNoParticles": true, + "emitterAngleA": 0, + "emitterAngleB": 22, + "emitterForceMax": 200, + "emitterForceMin": 45, + "flow": -1, + "jumpForwardInTimeOnCreation": 0, + "maxParticleNb": 80, + "name": "shooting_effect", + "particleAlpha1": 204, + "particleAlpha2": 0, + "particleAlphaRandomness1": 0, + "particleAlphaRandomness2": 0, + "particleAngle1": 0, + "particleAngle2": 0, + "particleAngleRandomness1": 0, + "particleAngleRandomness2": 0, + "particleBlue1": 97, + "particleBlue2": 167, + "particleGravityX": 100, + "particleGravityY": 100, + "particleGreen1": 97, + "particleGreen2": 167, + "particleLifeTimeMax": 1, + "particleLifeTimeMin": 0.5, + "particleRed1": 99, + "particleRed2": 167, + "particleSize1": 100, + "particleSize2": 100, + "particleSizeRandomness1": 0, + "particleSizeRandomness2": 0, + "rendererParam1": 1, + "rendererParam2": 1, + "rendererType": "Point", + "tank": 45, + "textureParticleName": "", + "type": "ParticleSystem::ParticleEmitter", + "zoneRadius": 1, + "variables": [], + "effects": [], + "behaviors": [] + }, + { + "assetStoreId": "", + "bold": false, + "italic": false, + "name": "Health", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [], + "string": "100", + "font": "", + "textAlignment": "", + "characterSize": 64, + "color": { + "b": 0, + "g": 0, + "r": 255 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "100", + "font": "", + "textAlignment": "", + "characterSize": 64, + "color": "255;0;0" + } + }, + { + "assetStoreId": "", + "bold": true, + "italic": false, + "name": "You_lose", + "smoothed": true, + "type": "TextObject::Text", + "underlined": false, + "variables": [], + "effects": [], + "behaviors": [ + { + "name": "Anchor", + "type": "AnchorBehavior::AnchorBehavior", + "bottomEdgeAnchor": 2, + "leftEdgeAnchor": 1, + "relativeToOriginalWindowSize": true, + "rightEdgeAnchor": 2, + "topEdgeAnchor": 1 + }, + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ], + "string": "WASTED", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "", + "characterSize": 95, + "color": { + "b": 0, + "g": 0, + "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "WASTED", + "font": "assets\\fonts\\Kenney Rocket Square.ttf", + "textAlignment": "", + "characterSize": 95, + "color": "0;0;0" + } + }, + { + "adaptCollisionMaskAutomatically": false, + "assetStoreId": "", + "name": "Thumb", + "type": "Sprite", + "updateIfNotVisible": false, + "variables": [], + "effects": [], + "behaviors": [], + "animations": [ + { + "name": "", + "useMultipleDirections": false, + "directions": [ + { + "looping": false, + "timeBetweenFrames": 0.08, + "sprites": [ + { + "hasCustomCollisionMask": false, + "image": "assets\\character\\Player\\phone\\thumb_1.png", + "points": [], + "originPoint": { + "name": "origine", + "x": 15.5, + "y": 129.5 + }, + "centerPoint": { + "automatic": false, + "name": "centre", + "x": 15.5, + "y": 129.5 + }, + "customCollisionMask": [] + } + ] + } + ] + } + ] + } + ], + "objectsFolderStructure": { + "folderName": "__ROOT", + "children": [ + { + "objectName": "grass" + }, + { + "objectName": "grass_tiled" + }, + { + "objectName": "Placeholder" + }, + { + "objectName": "Niko" + }, + { + "objectName": "road" + }, + { + "objectName": "roof_tops" + }, + { + "objectName": "sand" + }, + { + "objectName": "door" + }, + { + "objectName": "flame_thrower_fire_collision" + }, + { + "objectName": "crossair" + }, + { + "objectName": "gun1" + }, + { + "objectName": "gun3" + }, + { + "objectName": "gun4" + }, + { + "objectName": "gun2" + }, + { + "objectName": "tazer_hitbox" + }, + { + "objectName": "gun5" + }, + { + "objectName": "mele1" + }, + { + "objectName": "mele2" + }, + { + "objectName": "Slash1" + }, + { + "objectName": "ammo" + }, + { + "objectName": "energy" + }, + { + "objectName": "Fences" + }, + { + "objectName": "road_block" + }, + { + "objectName": "bullet" + }, + { + "objectName": "AmmoText" + }, + { + "objectName": "weaponholding" + }, + { + "objectName": "foliage" + }, + { + "objectName": "house_enter" + }, + { + "objectName": "Water_cover" + }, + { + "objectName": "Water" + }, + { + "objectName": "sports_equipments_movable" + }, + { + "objectName": "sports_equipments" + }, + { + "objectName": "ground_1" + }, + { + "objectName": "ground_elements" + }, + { + "objectName": "flame_thrower_fire_secondary" + }, + { + "objectName": "flame_thrower_fire" + }, + { + "objectName": "reloading" + }, + { + "objectName": "Phone" + }, + { + "objectName": "Wheel_info" + }, + { + "objectName": "deco" + }, + { + "objectName": "trash_movable" + }, + { + "objectName": "brown_leaves_particle" + }, + { + "objectName": "green_leaves_particle" + }, + { + "objectName": "bridge" + }, + { + "objectName": "road_1" + }, + { + "objectName": "road_2" + }, + { + "objectName": "concrete_1" + }, + { + "objectName": "hidden_separate" + }, + { + "objectName": "road_3" + }, + { + "objectName": "phone_wifi" + }, + { + "objectName": "phone_battery" + }, + { + "objectName": "phone_time" + }, + { + "objectName": "road_4" + }, + { + "objectName": "beach_sand_1" + }, + { + "objectName": "beach_sand_2" + }, + { + "objectName": "sand_1" + }, + { + "objectName": "sand_2" + }, + { + "objectName": "Pointer" + }, + { + "objectName": "weapon_icons" + }, + { + "objectName": "NewObject" + }, + { + "objectName": "mouse_point" + }, + { + "objectName": "bullet_destroy_rocket" + }, + { + "objectName": "bullet_destroy_machine" + }, + { + "objectName": "bullet_destroy_sniper" + }, + { + "objectName": "bullet_destroy_pistol" + }, + { + "objectName": "shooting_effect_rocket" + }, + { + "objectName": "shooting_effect_sniper" + }, + { + "objectName": "shooting_effect" + }, + { + "objectName": "Health" + }, + { + "objectName": "You_lose" + }, + { + "objectName": "Thumb" + } + ] + }, + "events": [ + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Note - Important Information", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Comment", + "color": { + "b": 109, + "g": 230, + "r": 255, + "textB": 0, + "textG": 0, + "textR": 0 + }, + "comment": "Grid parameters used to place fence object.\n - cell width = 70\n - cell height = 70\n - x offset = 30\n - y offset = 30\n\nGrid parameters used to place tiles object.\n - cell width = 70\n - cell height = 70\n - x offset = 0\n - y offset = 0" + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Links", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Sea" + }, + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Game" + }, + { + "type": "BuiltinCommonInstructions::Link", + "include": { + "includeConfig": 0 + }, + "target": "Sports" + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "Rooftops", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [ + { + "type": { + "value": "BuiltinCommonInstructions::Or" + }, + "parameters": [], + "subInstructions": [ + { + "type": { + "value": "SceneJustResumed" + }, + "parameters": [ + "" + ] + }, + { + "type": { + "value": "DepartScene" + }, + "parameters": [ + "" + ] + } + ] + } + ], + "actions": [ + { + "type": { + "value": "ModVarScene" + }, + "parameters": [ + "niko_movement", + "=", + "1" + ] + } + ] + } + ], + "parameters": [] + }, + { + "colorB": 228, + "colorG": 176, + "colorR": 74, + "creationTime": 0, + "name": "ZOrders", + "source": "", + "type": "BuiltinCommonInstructions::Group", + "events": [ + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [ + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "grass_tiled", + "=", + "-50" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand", + "=", + "-10" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "Water", + "=", + "-100" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand_2", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "sand_1", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "beach_sand_2", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "beach_sand_1", + "=", + "-11" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "Water_cover", + "=", + "-100" + ] + }, + { + "type": { + "value": "ChangePlan" + }, + "parameters": [ + "road", + "=", + "-10" + ] + } + ] + } + ], + "parameters": [] + }, + { + "type": "BuiltinCommonInstructions::Standard", + "conditions": [], + "actions": [] + } + ], + "layers": [ + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "", + "renderingType": "", + "visibility": true, + "cameras": [ + { + "defaultSize": true, + "defaultViewport": true, + "height": 0, + "viewportBottom": 1, + "viewportLeft": 0, + "viewportRight": 1, + "viewportTop": 0, + "width": 0 + }, + { + "defaultSize": true, + "defaultViewport": true, + "height": 0, + "viewportBottom": 1, + "viewportLeft": 0, + "viewportRight": 1, + "viewportTop": 0, + "width": 0 + } + ], + "effects": [ + { + "effectType": "BlackAndWhite", + "name": "BlackAndWhite", + "doubleParameters": { + "opacity": 1 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "ZoomBlur", + "name": "ZoomBlur", + "doubleParameters": { + "centerX": 0.5, + "centerY": 0.5, + "innerRadius": 0, + "padding": 0, + "strength": 0.3 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "LightNight", + "name": "LightNight", + "doubleParameters": { + "opacity": 0.5 + }, + "stringParameters": {}, + "booleanParameters": {} + }, + { + "effectType": "OldFilm", + "name": "Effect2", + "doubleParameters": { + "animationFrequency": 0, + "noise": 0, + "noiseSize": 0, + "scratch": 0, + "scratchDensity": 0.3, + "scratchWidth": 1, + "sepia": 0, + "vignetting": 0.3, + "vignettingAlpha": 0.5, + "vignettingBlur": 0.3 + }, + "stringParameters": {}, + "booleanParameters": {} + } + ] + }, + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "GUI", + "renderingType": "", + "visibility": false, + "cameras": [], + "effects": [] + }, + { + "ambientLightColorB": 200, + "ambientLightColorG": 200, + "ambientLightColorR": 200, + "camera3DFarPlaneDistance": 10000, + "camera3DFieldOfView": 45, + "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", + "followBaseLayerCamera": false, + "isLightingLayer": false, + "isLocked": false, + "name": "Fade", + "renderingType": "", + "visibility": false, + "cameras": [], + "effects": [] + } + ], + "behaviorsSharedData": [ + { + "name": "Anchor", + "type": "AnchorBehavior::AnchorBehavior" + }, + { + "name": "Animation", + "type": "AnimatableCapability::AnimatableBehavior" + }, + { + "name": "Bounce", + "type": "Bounce::Bounce" + }, + { + "name": "Effect", + "type": "EffectCapability::EffectBehavior" + }, + { + "name": "FlashTransitionPainter", + "type": "FlashTransitionPainter::FlashTransitionPainter" + }, + { + "name": "Flippable", + "type": "FlippableCapability::FlippableBehavior" + }, + { + "name": "InOnScreen", + "type": "IsOnScreen::InOnScreen" + }, + { + "name": "Opacity", + "type": "OpacityCapability::OpacityBehavior" + }, + { + "name": "Resizable", + "type": "ResizableCapability::ResizableBehavior" + }, + { + "name": "Scale", + "type": "ScalableCapability::ScalableBehavior" + }, + { + "name": "Text", + "type": "TextContainerCapability::TextContainerBehavior" + }, + { + "name": "TopDownMovement", + "type": "TopDownMovementBehavior::TopDownMovementBehavior" + }, + { + "name": "Tween", + "type": "Tween::TweenBehavior" + } + ] +} \ No newline at end of file diff --git a/src/layouts/rooms.json b/src/layouts/rooms.json index 3107cdfe0..d3862c880 100644 --- a/src/layouts/rooms.json +++ b/src/layouts/rooms.json @@ -28997,6 +28997,26 @@ "b": 156, "g": 156, "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Wheel using: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" } }, { @@ -29750,6 +29770,26 @@ "b": 255, "g": 255, "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "00:00", + "font": "", + "textAlignment": "", + "characterSize": 14, + "color": "255;255;255" } }, { @@ -29771,6 +29811,26 @@ "b": 112, "g": 112, "r": 112 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "reloading", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": "112;112;112" } }, { @@ -29792,6 +29852,26 @@ "b": 156, "g": 156, "r": 156 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Ammo: [number]", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "156;156;156" } }, { @@ -30016,6 +30096,26 @@ "b": 255, "g": 255, "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "1", + "font": "", + "textAlignment": "", + "characterSize": 50, + "color": "255;255;255" } }, { @@ -30349,6 +30449,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, @@ -30376,6 +30477,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, @@ -30392,6 +30494,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false, @@ -30431,6 +30534,10 @@ "name": "Scale", "type": "ScalableCapability::ScalableBehavior" }, + { + "name": "Text", + "type": "TextContainerCapability::TextContainerBehavior" + }, { "name": "TopDownMovement", "type": "TopDownMovementBehavior::TopDownMovementBehavior" diff --git a/src/layouts/settings.json b/src/layouts/settings.json index 8152b1e6a..3684e57ea 100644 --- a/src/layouts/settings.json +++ b/src/layouts/settings.json @@ -441,6 +441,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Shadows: On", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "0;0;0" } }, { @@ -472,6 +492,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Volume", + "font": "", + "textAlignment": "", + "characterSize": 59, + "color": "0;0;0" } }, { @@ -503,6 +543,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Settings", + "font": "", + "textAlignment": "", + "characterSize": 59, + "color": "0;0;0" } }, { @@ -623,6 +683,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Sound: On", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "0;0;0" } }, { @@ -813,6 +893,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "Fullscreen: On", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "0;0;0" } }, { @@ -1111,6 +1211,26 @@ "b": 255, "g": 255, "r": 255 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "255;255;255" } }, { @@ -1142,6 +1262,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "-", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "0;0;0" } }, { @@ -1173,6 +1313,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": false, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "+", + "font": "", + "textAlignment": "", + "characterSize": 20, + "color": "0;0;0" } }, { @@ -1204,6 +1364,26 @@ "b": 0, "g": 0, "r": 0 + }, + "content": { + "bold": true, + "isOutlineEnabled": false, + "isShadowEnabled": false, + "italic": false, + "outlineColor": "255;255;255", + "outlineThickness": 2, + "shadowAngle": 90, + "shadowBlurRadius": 2, + "shadowColor": "0;0;0", + "shadowDistance": 4, + "shadowOpacity": 127, + "smoothed": true, + "underlined": false, + "text": "<", + "font": "", + "textAlignment": "", + "characterSize": 30, + "color": "0;0;0" } } ], @@ -2078,6 +2258,7 @@ "camera3DFarPlaneDistance": 10000, "camera3DFieldOfView": 45, "camera3DNearPlaneDistance": 0.1, + "cameraType": "perspective", "followBaseLayerCamera": false, "isLightingLayer": false, "isLocked": false,