STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228082
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/76797690?noj=FRM76797690-2DC" width="1" height="1"></div>

Maya Ball.swf

This is the info page for
Flash #25871

(Click the ID number above for more basic data on this flash file.)


Text
0%

F

F

POWER-UPS:

Fire Ball

Magic Magnet

Crossbow

3 Ball Split

Safety Chains

Expand Paddle

Extra Live

Golden Coins

0

99999

BALL DEAD

ActionScript [AS1/AS2]

Frame 1
fscommand ("showmenu", "false"); _global.openSite = function () { getURL ("http://www.gameteam.com/stats/mayaball.html", "_blank"); };
Instance of Symbol 25 MovieClip in Frame 3
onClipEvent (load) { _alpha = 0; } onClipEvent (enterFrame) { t = _root.getBytesTotal(); l = _root.getBytesLoaded(); bar._xscale = (100 * l) / t; p = Math.round((1000 * l) / t) / 10; if (p == Math.floor(p)) { p = p + ".0"; } p = p + "%"; tf.text = p; if (t > 0) { if ((l < t) && (_alpha < 100)) { _alpha = (_alpha + 5); } if ((l == t) && (_alpha > 0)) { _alpha = (_alpha - 5); } } }
Instance of Symbol 28 MovieClip in Frame 4
onClipEvent (load) { _alpha = 0; state = 0; _root.stop(); } onClipEvent (enterFrame) { l = _root.getBytesLoaded(); t = _root.getBytesTotal(); if (state == 0) { _alpha = (_alpha + 5); if (_alpha >= 100) { _alpha = 100; state = 1; startPause = getTimer(); } } else if ((((state == 1) && (t == l)) && (l > 10)) && ((getTimer() - startPause) > 2500)) { this._alpha = this._alpha - 5; if (_alpha < 0) { _root.gotoAndStop("init"); } } }
Frame 6
function globalStart() { debug("Try to start game"); if (_global.settingsLoaded === true) { debug("STARTING GAME LEVEL " + levelNum); _root.tf_level.text = "LEVEL " + levelNum; _global.gameInProcess = true; _global.gameInMoving = true; initTiles(); _root.attachMovie("queue", "queue", _root.getNextHighestDepth()); _global.sound.width = 550; _global.queue.addFunc(sound.oEF, sound, 95); _global.gameTimeStart = getTimer(); _global.queue.addFunc(mainOEF, _root, 5); _root.wnd_pause._x = (_root.ballDied._x = (_root.wnd_next._x = (_root.wnd_gameover._x = (_root.wnd_gamecomplete._x = 275)))); _root.wnd_pause._y = (_root.ballDied._y = (_root.wnd_next._y = (_root.wnd_gameover._y = (_root.wnd_gamecomplete._y = 250)))); _root.wnd_pause._visible = (_root.ballDied._visible = (_root.wnd_next._visible = (_root.wnd_gameover._visible = (_root.wnd_gamecomplete._visible = false)))); _global.keyGetter = new Object(); keyGetter.onKeyDown = keyLogger; keyGetter.onMouseWheel = changeWeaponByMouse; Key.addListener(_global.keyGetter); Mouse.addListener(_global.keyGetter); _global.currLevel = _global.levels["level_" + levelNum]; _global.levelTime = 0; _global.levelTimeF = 0; _global.lastCollisionTimeF = 0; _global.levelTimeS = getTimer(); _global.currLevelBonusesNames = _global.envS.bonuses_names; _global.currLevelBonusesRandom = _global.envS.bonuses_random; if (!_global.noSet(currLevel.bonuses_names)) { _global.currLevelBonusesNames = currLevel.bonuses_names; } if (!_global.noSet(currLevel.bonuses_random)) { _global.currLevelBonusesRandom = currLevel.bonuses_random; } _global.currLevelBonusesNames = _global.currLevelBonusesNames.split(","); var _local3 = 0; while (_local3 < currLevelBonusesNames.length) { currLevelBonusesNames[_local3] = trim(currLevelBonusesNames[_local3]); _local3++; } _root.all.pl.attachMovie("caretMC", "player", _root.getNextHighestDepth()); _global.player = _root.all.pl.player; player._x = (borders.left + borders.right) / 2; player._y = _global.playerSettings.yposition; player.initObj(); player.setMode("none"); player.inQueue(20); delete _global.ballz; _global.ballz = new Array(); delete _global.bonusez; _global.bonusez = new Array(); delete _global.portalz; _global.portalz = new Array(); var _local4 = getTimer(); createLevel(); if (_global.levelScore == undefined) { _global.levelScore = 0; } changeLevelScore(0); var _local6 = _global.envS.centerBlockX; var _local5 = _global.envS.centerBlockY; if (!noSet(currLevel.centerBlockX)) { _local6 = currLevel.centerBlockX; } if (!noSet(currLevel.centerBlockY)) { _local5 = currLevel.centerBlockY; } if (currLevel.useCenterBlock != 0) { _root.convert._x = _global.envS.centerBlockX; _root.convert._y = _global.envS.centerBlockY; } if (_global.envS.debug == 1) { trace(("Generate time: " + (getTimer() - _local4)) + " ms"); _root.box.removeMovieClip(); _root.createEmptyMovieClip("box", _root.getNextHighestDepth()); _root.box2.removeMovieClip(); _root.createEmptyMovieClip("box2", _root.getNextHighestDepth()); _root.box3.removeMovieClip(); _root.createEmptyMovieClip("box3", _root.getNextHighestDepth()); } makeAutoball(); _global.modeChanged = false; _global.modeChangedMaxTime = (_global.modeChangedTime = 0); _global.dieAnim = false; _global.dieAnimPause = false; } else { debug("XML data not loaded yet"); } } System.useCodepage = true; fscommand ("trapallkeys", true); trace("init"); _global.PI2 = 57.2957795130823; _global.stageWidth = 550; _global.stageHeight = 400; _global.changeDebugText = function () { debug(); }; _global.debug = function (str) { if (str == undefined) { str = ""; } clearInterval(_root.debugInt); _root.tf_debug.text = str; if (str != "") { if (_global.envS.debug == 1) { trace(str); } _root.debugInt = setInterval(changeDebugText, 5000); _global.debugLog = _global.debugLog + (str + newline); } }; _global.debugLog = ""; debug(); MovieClip.prototype.drawRect = function (x1, y1, x2, y2) { this.moveTo(x1, y1); this.lineTo(x2, y1); this.lineTo(x2, y2); this.lineTo(x1, y2); this.lineTo(x1, y1); }; MovieClip.prototype.drawRectAbout = function (x1, y1, len) { this.drawRect(x1 - len, y1 - len, x1 + len, y1 + len); }; MovieClip.prototype.drawCross = function (x1, y1, len) { this.moveTo(x1 - len, y1); this.lineTo(x1 + len, y1); this.moveTo(x1, y1 - len); this.lineTo(x1, y1 + len); }; MovieClip.prototype.drawLine = function (x1, y1, x2, y2) { this.moveTo(x1, y1); this.lineTo(x2, y2); }; _global.trim = function (str) { str = String(str); var _local2 = -1; do { _local2++; var a = str.charAt(_local2); } while ((((a == " ") || (a == newline)) || (a == "\r")) || (a == "\t")); var _local3 = str.length; do { _local3--; var a = str.charAt(_local3); } while ((((a == " ") || (a == newline)) || (a == "\r")) || (a == "\t")); str = str.substring(_local2, _local3 + 1); if (String(parseFloat(str)) == str) { str = parseFloat(str); } return(str); }; _global.alphaIn = function () { this._alpha = this._alpha + 5; if (this._alpha > 100) { this._alpha = 100; delete this.onEnterFrame; } }; _global.alphaOut = function () { this.step++; if (this.step > this.maxStep) { this._alpha = this._alpha - 5; if (this._alpha < 0) { this._alpha = 0; delete this.onEnterFrame; this.removeMovieClip(); } } }; _global.alphaOutQuick = function () { this.step++; if (this.step > this.maxStep) { this._alpha = this._alpha - 15; if (this._alpha < 0) { this._alpha = 0; delete this.onEnterFrame; this.removeMovieClip(); } } }; _global.noSet = function (a) { if (a == undefined) { return(true); } if (a == null) { return(true); } if (String(a) == "") { return(true); } if (a == "undefined") { return(true); } if ((typeof(a) == "number") && (isNaN(a))) { return(true); } return(false); }; _global.prepareArrayString = function (inv) { var _local3 = inv.split(","); if (_global.noSet(_local3)) { _local3 = new Array(); _local3.push(inv); } var _local2 = 0; while (_local2 < _local3.length) { _local3[_local2] = _global.trim(_local3[_local2]); _local2++; } return(_local3); }; _global.prepareArrayNum = function (inv) { var _local3 = inv.split(","); if (_global.noSet(_local3)) { _local3 = new Array(); _local3.push(inv); } var _local2 = 0; while (_local2 < _local3.length) { _local3[_local2] = parseFloat(_local3[_local2]); _local2++; } return(_local3); }; _global.isChild = function (arr, item) { var _local2 = false; for (var _local3 in arr) { if (arr[_local3] == item) { _local2 = _local3; break; } } return(_local2); }; _global.isArrChild = function (arr, name, item) { var _local3 = false; var _local1 = 0; while (_local1 < arr.length) { if (arr[_local1][name] == item) { _local3 = arr[_local1]; break; } _local1++; } return(_local3); }; XML.prototype.ignoreWhite = true; _global.settingsLoaded = false; fscommand ("trapallkeys", true); _focusrect = false; fscommand ("showmenu", false); createXML = function () { var _local3 = new XML(str); _global.settingsLoaded = true; debug("Settings loaded; parsing..."); var _local2 = 0; while (_local2 < _local3.firstChild.childNodes.length) { foo = _local3.firstChild.childNodes[_local2]; parseXMLtoVars(foo, _global); _local2++; } }; _global.xmlErrors = new Array("A CDATA section was not properly terminated.", "The XML declaration was not properly terminated.", "The DOCTYPE declaration was not properly terminated.", "A comment was not properly terminated.", "An XML element was malformed.", "Out of memory.", "An attribute value was not properly terminated.", "A start-tag was not matched with an end-tag.", "An end-tag was encountered without a matching start-tag."); parseXMLtoVars = function (xml, target) { if (xml.nodeName == "var") { var _local5 = xml.attributes.value; if (_global.noSet(_local5) && (xml.nodeValue == null)) { if (xml.childNodes.length == 1) { _local5 = xml.firstChild.nodeValue; } else { _local5 = xml.childNodes.join(""); } } if (String(parseFloat(_local5)) == _local5) { _local5 = parseFloat(_local5); } if (xml.attributes.name != null) { target[xml.attributes.name] = _local5; // unexpected jump } return(_local5); } if (xml.nodeName == "array") { target[xml.attributes.name] = new Array(); var _local4 = target[xml.attributes.name]; var _local3 = 0; while (_local3 < xml.childNodes.length) { _local4.push(parseXMLtoVars(xml.childNodes[_local3])); _local3++; } } else if (xml.nodeName == "object") { var _local4 = new Object(); for (var _local3 in xml.attributes) { if (_local3 != "name") { parseXMLtoVars(new XML(((("<var name=\"" + _local3) + "\"\tvalue=\"") + xml.attributes[_local3]) + "\" />").firstChild, _local4); } } var _local3 = 0; while (_local3 < xml.childNodes.length) { parseXMLtoVars(xml.childNodes[_local3], _local4); _local3++; } if (xml.attributes.name != null) { target[xml.attributes.name] = _local4; } else { return(_local4); } } }; str = ""; str = str + "<?xml version=\"1.0\" encoding=\"windows-1251\"?>"; str = str + "<settings>"; str = str + "<object name=\"envS\" >"; str = str + "<var name=\"debug\" value=\"0\" />"; str = str + "<var name=\"debugBallDie\" value=\"0\" />"; str = str + "<var name=\"soundDebug\" value=\"0\" />"; str = str + "<var name=\"normalsDebug\" value=\"1\" />"; str = str + "<var name=\"centerBlockX\" value=\"275\" />"; str = str + "<var name=\"centerBlockY\" value=\"150\" />"; str = str + "<var name=\"maxIterations\" value=\"10\" />"; str = str + "<var name=\"bonuses_names\" value=\"triple,live,lazer,rocket,fire,acid,freeze,slowball,fastball,bigball,littleball,widecaret,narrowcaret,bomb,score,wall\" />"; str = str + "<var name=\"bonusSpeed\" value=\"5\" />"; str = str + "<var name=\"bonusBombSpeed\" value=\"5\" />"; str = str + "<var name=\"bonuses_random\" value=\"0.9992\" />"; str = str + "<var name=\"bonus_ball_ang\" value=\"5\" />"; str = str + "<var name=\"bonus_ballFromTile_ang\" value=\"10\" />"; str = str + "<var name=\"startLives\" value=\"5\" />"; str = str + "<var name=\"lazerSpeed\" value=\"-20\" />"; str = str + "<var name=\"rocketSpeed\" value=\"-5\" />"; str = str + "<var name=\"freezeSpeed\" value=\"-10\" />"; str = str + "<var name=\"lazerRatio\" value=\"10\" />"; str = str + "<var name=\"rocketRatio\" value=\"15\" />"; str = str + "<var name=\"lazerCount\" value=\"6\" />"; str = str + "<var name=\"rocketCount\" value=\"5\" />"; str = str + "<var name=\"freezeCount\" value=\"5\" />"; str = str + "<var name=\"acidTime\" value=\"300\" />"; str = str + "<var name=\"fireTime\" value=\"500\" />"; str = str + "<var name=\"glueTime\" value=\"600\" />"; str = str + "<var name=\"startGlueTime\" value=\"1200\" />"; str = str + "<var name=\"speedChangeTime\" value=\"300\" />"; str = str + "<var name=\"speedChangeUp\" value=\"1.3\" />"; str = str + "<var name=\"speedChangeDown\" value=\"0.7\" />"; str = str + "<var name=\"dimChangeTime\" value=\"300\" />"; str = str + "<var name=\"dimChangeUp\" value=\"1.5\" />"; str = str + "<var name=\"dimChangeDown\" value=\"0.75\" />"; str = str + "<var name=\"dimChangeFactor\" value=\"8\" />"; str = str + "<var name=\"score\" value=\"10\" />"; str = str + "<var name=\"bonusScore\" value=\"1000\" />"; str = str + "<var name=\"exSpeed\" value=\"10\" />"; str = str + "<var name=\"wallBonusLives\" value=\"1\" />"; str = str + "<var name=\"horizAngleMin\" value=\"30\" />"; str = str + "<var name=\"horizAngleCorrY\" value=\"300\" />"; str = str + "<var name=\"autoDieInterval\" value=\"300\" />"; str = str + "<var name=\"autoDieTileCount\" value=\"10\" />"; str = str + "</object>"; str = str + "<object name=\"borders\" >"; str = str + "<var name=\"top\" value=\"0\" />"; str = str + "<var name=\"bottom\" value=\"400\" />"; str = str + "<var name=\"left\" value=\"0\" />"; str = str + "<var name=\"right\" value=\"550\" />"; str = str + "</object>"; str = str + "<object name=\"player_caret\" >"; str = str + "<var name=\"width\" value=\"80\" />"; str = str + "<var name=\"height\" value=\"22\" />"; str = str + "<var name=\"minWidth\" value=\"70\" />"; str = str + "<var name=\"maxWidth\" value=\"150\" />"; str = str + "<var name=\"dimChangeTime\" value=\"300\" />"; str = str + "<var name=\"dimChangeFactor\" value=\"8\" />"; str = str + "<var name=\"caretAngle\" value=\"-45\" />"; str = str + "<var name=\"moveAmount\" value=\"8\" />"; str = str + "<var name=\"moveRatio\" value=\"4\" />"; str = str + "</object>"; str = str + "<object name=\"playerSettings\" >"; str = str + "<var name=\"yposition\" value=\"370\" />"; str = str + "<var name=\"speed\" value=\"6\" />"; str = str + "</object>"; str = str + "<object name=\"tilesDescr\" >"; str = str + "<object name=\"theWall\" >"; str = str + "<var name=\"sw\" value=\"0,0,550,0,550,10,0,10,0,0\" />"; str = str + "<var name=\"bb\" value=\"0,0,550,10\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"block_chain\" >"; str = str + "<var name=\"sw\" value=\"1,1, 1,1, 1,1, 1,1, 1,1\" />"; str = str + "<var name=\"bb\" value=\"1,1, 1,1\" />"; str = str + "<var name=\"live\" value=\"1000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"block_chain_long\" >"; str = str + "<var name=\"sw\" value=\"1,1, 1,1, 1,1, 1,1, 1,1\" />"; str = str + "<var name=\"bb\" value=\"1,1, 1,1\" />"; str = str + "<var name=\"live\" value=\"1000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"block_chain_rotated_45\" >"; str = str + "<var name=\"sw\" value=\"1,1, 1,1, 1,1, 1,1, 1,1\" />"; str = str + "<var name=\"bb\" value=\"1,1, 1,1\" />"; str = str + "<var name=\"live\" value=\"1000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"gear_unbreak\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"column_up\" >"; str = str + "<var name=\"sw\" value=\"-15,-10, 15,-10, 15,10, -15,10, -15,-10\" />"; str = str + "<var name=\"bb\" value=\"-15,-10, 15,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"column_up_fire\" >"; str = str + "<var name=\"sw\" value=\"-15,-10, 15,-10, 15,10, -15,10, -15,-10\" />"; str = str + "<var name=\"bb\" value=\"-15,-10, 15,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"column_mid\" >"; str = str + "<var name=\"sw\" value=\"-15,-10, 15,-10, 15,10, -15,10, -15,-10\" />"; str = str + "<var name=\"bb\" value=\"-15,-10, 15,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"column_down\" >"; str = str + "<var name=\"sw\" value=\"-15,-10, 15,-10, 15,10, -15,10, -15,-10\" />"; str = str + "<var name=\"bb\" value=\"-15,-10, 15,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"block_grass\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"block_rock\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"block_sand\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"block_wall\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"block_wall_fire\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"block_stone\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"2\" />"; str = str + "</object>"; str = str + "<object name=\"grass_40x40\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"sand_40x40\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"rock_40x40\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"stone_40x40\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"head1_bomb\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "<var name=\"explode\" value=\"1\" />"; str = str + "<var name=\"exradius\" value=\"80\" />"; str = str + "<var name=\"exspeed\" value=\"10\" />"; str = str + "</object>"; str = str + "<object name=\"head1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"head2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"head3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"head4\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"gear\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"grass_trg1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20,20,-20, -20,20,-20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"grass_trg2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"grass_trg3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"grass_trg4\" >"; str = str + "<var name=\"sw\" value=\"20,-20, 20,20, -20,20, 20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"rock_trg1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20,20,-20, -20,20,-20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"rock_trg2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"rock_trg3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"rock_trg4\" >"; str = str + "<var name=\"sw\" value=\"20,-20, 20,20, -20,20, 20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"100000\" />"; str = str + "<var name=\"inGame\" value=\"0\" />"; str = str + "</object>"; str = str + "<object name=\"stone_trg1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20,20,-20, -20,20,-20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"stone_trg2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"stone_trg3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"stone_trg4\" >"; str = str + "<var name=\"sw\" value=\"20,-20, 20,20, -20,20, 20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_trg1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20,20,-20, -20,20,-20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_trg2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_trg3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_trg4\" >"; str = str + "<var name=\"sw\" value=\"20,-20, 20,20, -20,20, 20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_arka1\" >"; str = str + "<var name=\"sw\" value=\"-20,-20,20,-20, -20,20,-20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"wall_arka2\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,-20, 20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"sand_trg3\" >"; str = str + "<var name=\"sw\" value=\"-20,-20, 20,20, -20,20, -20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"sand_trg4\" >"; str = str + "<var name=\"sw\" value=\"20,-20, 20,20, -20,20, 20,-20\" />"; str = str + "<var name=\"bb\" value=\"-20,-20, 20,20\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"chest_left\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"chest_mid\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "<object name=\"chest_right\" >"; str = str + "<var name=\"sw\" value=\"-20,-10, 20,-10, 20,10, -20,10, -20,-10\" />"; str = str + "<var name=\"bb\" value=\"-20,-10, 20,10\" />"; str = str + "<var name=\"live\" value=\"1\" />"; str = str + "</object>"; str = str + "</object>"; str = str + "<object name=\"levels\" >"; str = str + "<object name=\"level_1\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_grass\" x=\"159\" y=\"228\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"239\" y=\"228\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"199\" y=\"228\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-121\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"208\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_left\" x=\"68\" y=\"208\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_grass\" x=\"431\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"452\" y=\"248\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"492\" y=\"248\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"511\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"471\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"28\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"48\" y=\"248\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"89\" y=\"248\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"108\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"68\" y=\"228\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"451\" y=\"81\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"451\" y=\"61\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"329\" y=\"82\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"329\" y=\"62\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"211\" y=\"82\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"211\" y=\"62\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"91\" y=\"81\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_mid\" x=\"269\" y=\"118\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"head3\" x=\"391\" y=\"108\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"151\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"471\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"391\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"431\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"311\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"351\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"231\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"271\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"451\" y=\"101\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"451\" y=\"119\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"329\" y=\"101\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"329\" y=\"119\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"51\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"491\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"451\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"291\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"251\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"211\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"91\" y=\"61\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"211\" y=\"101\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"91\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"211\" y=\"119\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"91\" y=\"119\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"152\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"192\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"411\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"371\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"331\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"72\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"112\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"171\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"131\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"91\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_2\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_grass\" x=\"495\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"455\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"415\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"375\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"175\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"135\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"95\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"55\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_mid\" x=\"174\" y=\"120\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_mid\" x=\"374\" y=\"120\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"gear\" x=\"291\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"360\" rtype=\"lin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"266\" y=\"185\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"-360\" rtype=\"lin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"95\" y=\"220\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"glue\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_left\" x=\"453\" y=\"220\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"head1_bomb\" x=\"275\" y=\"111\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"335\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"335\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"335\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"215\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"215\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"215\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"375\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"335\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"215\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"175\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"492\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"452\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"412\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"492\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"412\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"412\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"492\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"492\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"412\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"492\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"452\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"412\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"492\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"452\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"412\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"492\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"412\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"412\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"492\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"492\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"412\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"372\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"333\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"294\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"254\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"214\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"173\" y=\"152\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"95\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"135\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"55\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"55\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"135\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"135\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"55\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"95\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"95\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"135\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"55\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"55\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"135\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"135\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"55\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_3\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_wall\" x=\"120\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"40\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-390\" deltay=\"0\" mtype=\"sin\" steps=\"180\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"195\" y=\"122\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-80\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"80\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"347\" y=\"40\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"live\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"82\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-82\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head1_bomb\" x=\"274\" y=\"74\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"367\" y=\"62\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"80\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-80\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"327\" y=\"62\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"80\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-80\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"218\" y=\"142\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-80\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"80\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"178\" y=\"142\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-80\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"80\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"387\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"426\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"466\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"235\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"274\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"314\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"77\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"116\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"156\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"426\" y=\"134\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"447\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"407\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"426\" y=\"74\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"427\" y=\"104\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"274\" y=\"134\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"295\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"255\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"275\" y=\"104\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"137\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"97\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"116\" y=\"74\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"117\" y=\"104\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"116\" y=\"134\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_4\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_chain_rotated_45\" x=\"293\" y=\"3\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"-90\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"90\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear_unbreak\" x=\"293\" y=\"3\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"-45\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"50\" rotateTile=\"1\" deltar=\"45\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head1_bomb\" x=\"172\" y=\"123\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"293\" centery=\"3\" otype=\"sin\" steps=\"50\" deltaorbitr=\"-90\" />"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"293\" centery=\"3\" otype=\"sin\" steps=\"50\" deltaorbitr=\"90\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"505\" y=\"220\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"glue\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"40\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"465\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"40\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"505\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"40\" mtype=\"sin\" steps=\"80\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"sin\" steps=\"80\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"38\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"40\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"78\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"40\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"132\" y=\"162\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"head4\" x=\"93\" y=\"92\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"93\" y=\"122\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"93\" y=\"153\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"490\" y=\"62\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"490\" y=\"82\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"490\" y=\"101\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"490\" y=\"121\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"490\" y=\"141\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"451\" y=\"121\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"451\" y=\"141\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"451\" y=\"161\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"490\" y=\"161\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"93\" y=\"182\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"92\" y=\"203\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"132\" y=\"183\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"132\" y=\"203\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"490\" y=\"181\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"451\" y=\"181\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"450\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"172\" y=\"222\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"411\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg3\" x=\"172\" y=\"193\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg4\" x=\"411\" y=\"191\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"389\" y=\"239\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"191\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"212\" y=\"221\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"372\" y=\"219\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"231\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"271\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"311\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"350\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"332\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"291\" y=\"221\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"251\" y=\"222\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_5\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_chain_long\" x=\"172\" y=\"-94\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"92\" y=\"-94\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"451\" y=\"-93\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"371\" y=\"-93\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"135\" y=\"210\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"415\" y=\"90\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head1\" x=\"415\" y=\"220\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head2\" x=\"135\" y=\"60\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"455\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"375\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"175\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"95\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"455\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"415\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"375\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"175\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"95\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"50\" mtype=\"sin\" steps=\"60\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-50\" mtype=\"sin\" steps=\"60\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_up_fire\" x=\"516\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up_fire\" x=\"277\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up_fire\" x=\"36\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"275\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"516\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"516\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"516\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"516\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"516\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"516\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"grass_40x40\" x=\"516\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"89\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"109\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"129\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"169\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"149\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"189\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"277\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"277\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"grass_40x40\" x=\"315\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"grass_40x40\" x=\"235\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"36\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"36\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"grass_40x40\" x=\"36\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_6\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"gear\" x=\"24\" y=\"65\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"62\" y=\"258\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"527\" y=\"65\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"489\" y=\"258\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"504\" y=\"-94\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"100\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"39\" y=\"-94\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-74\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"74\" mtype=\"sin\" steps=\"100\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"141\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_right\" x=\"411\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall_fire\" x=\"315\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"235\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"276\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"476\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"436\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"396\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"356\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"316\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"276\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"236\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"196\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"156\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"116\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"76\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"322\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"225\" y=\"61\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"126\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"94\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"94\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"164\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"196\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"196\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"386\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"354\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"354\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"424\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"456\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"456\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"276\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"276\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"456\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"416\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"376\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"336\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"296\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"256\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"216\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"176\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"136\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"96\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"356\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"276\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"196\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"476\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"436\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"396\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"156\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"116\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"76\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_7\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"head1_bomb\" x=\"438\" y=\"50\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"128\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"128\" y=\"190\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"88\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"88\" y=\"190\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"88\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"234\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"314\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"314\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"234\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"314\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"234\" y=\"250\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"234\" y=\"110\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_right\" x=\"314\" y=\"150\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_left\" x=\"234\" y=\"230\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"274\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"274\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"274\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"274\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"274\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"274\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"458\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"418\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"458\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"418\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"grass_trg2\" x=\"378\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"grass_trg1\" x=\"498\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"150\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-150\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"128\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"88\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"128\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"88\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"grass_trg2\" x=\"48\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"grass_trg1\" x=\"168\" y=\"240\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-140\" mtype=\"sin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"140\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_8\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"chest_left\" x=\"161\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_right\" x=\"391\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"glue\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_mid\" x=\"327\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"triple\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_mid\" x=\"215\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall_fire\" x=\"494\" y=\"89\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"54\" y=\"89\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"429\" y=\"10\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"429\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"429\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"429\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"397\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"357\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"325\" y=\"10\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"325\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"325\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"325\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"293\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"253\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"221\" y=\"10\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"221\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"221\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"221\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"118\" y=\"10\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"118\" y=\"30\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"118\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"118\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"189\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"149\" y=\"20\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"375\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"175\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"495\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"295\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"255\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"55\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"335\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"455\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"95\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"215\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"479\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"479\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"479\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"479\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"447\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"407\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"376\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"344\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"304\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"272\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"272\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"272\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"272\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"240\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"200\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"168\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"168\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"168\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"168\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"65\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"65\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"65\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"65\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"136\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"96\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"375\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"175\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"535\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"15\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"535\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"495\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"295\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"255\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"55\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"15\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"455\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"335\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"215\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"95\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"230\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_9\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_wall_fire\" x=\"155\" y=\"247\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"392\" y=\"247\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"310\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"270\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"230\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"270\" y=\"-65\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"270\" y=\"-5\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"270\" y=\"-35\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"310\" y=\"25\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"270\" y=\"25\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"230\" y=\"25\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"330\" y=\"45\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"290\" y=\"45\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"250\" y=\"45\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"210\" y=\"45\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"165\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-165\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"356\" y=\"17\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"333\" y=\"-532\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"162\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-162\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"189\" y=\"17\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"200\" y=\"-532\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"162\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-162\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"393\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"148\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"399\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"144\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"107\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"live\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"511\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"471\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"431\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"269\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"71\" y=\"107\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"71\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"111\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"71\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"31\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"71\" y=\"269\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_10\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_stone\" x=\"485\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"485\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"405\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"405\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"445\" y=\"96\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"145\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"145\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"65\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"65\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"105\" y=\"96\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"233\" y=\"170\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_mid\" x=\"273\" y=\"110\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_right\" x=\"313\" y=\"150\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_up\" x=\"313\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"313\" y=\"190\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"313\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_up\" x=\"273\" y=\"130\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"273\" y=\"150\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"273\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"273\" y=\"190\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"273\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_up\" x=\"233\" y=\"190\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"233\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"313\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"273\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"233\" y=\"230\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"463\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"423\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"503\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"383\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"333\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"293\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"253\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"213\" y=\"250\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"165\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"125\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"85\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"45\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"530\" y=\"10\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"506\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"373\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"360\" y=\"10\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"336\" y=\"-327\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-127\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"127\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"203\" y=\"-327\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-127\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"127\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"192\" y=\"10\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"168\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"gear\" x=\"25\" y=\"10\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"100\" rotateTile=\"1\" deltar=\"-180\" rtype=\"sin\" />"; str = str + "<object action=\"move\" startByHit=\"0\" steps=\"150\" rotateTile=\"1\" deltar=\"180\" rtype=\"sin\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"35\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_11\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_rock\" x=\"1135\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"575\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"615\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"655\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"695\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"735\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"775\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"815\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"855\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"895\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"935\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"975\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1015\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1055\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1095\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-545\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-505\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-465\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-425\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-385\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-345\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-305\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-265\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-225\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-185\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-145\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-105\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-65\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-25\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall_fire\" x=\"375\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"175\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"335\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"215\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"455\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"95\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"455\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"455\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"95\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"95\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"495\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"375\" y=\"130\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"335\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"175\" y=\"130\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"215\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"495\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"415\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"455\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"455\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"95\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"95\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"495\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"375\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"175\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"335\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"215\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_12\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"head3\" x=\"435\" y=\"56\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"435\" y=\"236\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"115\" y=\"56\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"229\" y=\"140\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"triple\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_right\" x=\"309\" y=\"139\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"live\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall_fire\" x=\"269\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"95\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"455\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"475\" y=\"66\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"475\" y=\"46\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"395\" y=\"46\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"395\" y=\"66\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"155\" y=\"46\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"155\" y=\"66\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"75\" y=\"46\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"75\" y=\"66\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"310\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"230\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"330\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"290\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"250\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"210\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"475\" y=\"246\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"475\" y=\"226\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"395\" y=\"246\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"395\" y=\"226\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"115\" y=\"236\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"155\" y=\"246\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"155\" y=\"226\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"75\" y=\"246\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"75\" y=\"226\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"266\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"455\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"415\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"135\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"95\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"86\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_13\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_wall\" x=\"280\" y=\"240\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"236\" y=\"230\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"201\" y=\"202\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"182\" y=\"162\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"182\" y=\"117\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"201\" y=\"77\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"236\" y=\"49\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"280\" y=\"40\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"323\" y=\"49\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"358\" y=\"77\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"377\" y=\"117\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"377\" y=\"162\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"358\" y=\"202\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"323\" y=\"230\" plane=\"1\" delta=\"48,0\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"orbit\" startByHit=\"0\" centerx=\"280\" centery=\"140\" deltaorbitr=\"360\" otype=\"lin\" steps=\"160\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head2\" x=\"71\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"470\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"471\" y=\"97\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"71\" y=\"97\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"393\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"399\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"511\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"471\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"431\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"148\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"144\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"71\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"111\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"71\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"31\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"301\" y=\"156\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"column_up\" x=\"241\" y=\"96\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"241\" y=\"116\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"241\" y=\"136\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"241\" y=\"156\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"301\" y=\"196\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_sand\" x=\"261\" y=\"196\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"321\" y=\"176\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"281\" y=\"176\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"241\" y=\"176\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_14\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"210\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-190\" mtype=\"lin\" steps=\"145\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-35\" mtype=\"lin\" steps=\"18\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-160\" mtype=\"lin\" steps=\"120\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-65\" mtype=\"lin\" steps=\"33\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"150\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-130\" mtype=\"lin\" steps=\"95\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-95\" mtype=\"lin\" steps=\"48\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-100\" mtype=\"lin\" steps=\"70\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-125\" mtype=\"lin\" steps=\"63\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"90\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-70\" mtype=\"lin\" steps=\"45\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-155\" mtype=\"lin\" steps=\"78\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"30\" y=\"60\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-40\" mtype=\"lin\" steps=\"20\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"180\" deltay=\"0\" mtype=\"lin\" steps=\"90\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"225\" deltay=\"0\" mtype=\"lin\" steps=\"112\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-225\" mtype=\"lin\" steps=\"113\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-300\" deltay=\"0\" mtype=\"lin\" steps=\"150\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"100\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"75\" deltay=\"0\" mtype=\"lin\" steps=\"37\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"125\" mtype=\"lin\" steps=\"62\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-255\" deltay=\"0\" mtype=\"lin\" steps=\"128\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-185\" mtype=\"lin\" steps=\"93\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"160\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"340\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"300\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"340\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"200\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"160\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"460\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"460\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"420\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"120\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"80\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"80\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"300\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"260\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"260\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"380\" y=\"189\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_mid\" x=\"420\" y=\"189\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"triple\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"380\" y=\"169\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"419\" y=\"169\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"380\" y=\"149\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"380\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"420\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"380\" y=\"109\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"421\" y=\"109\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"380\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"379\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"339\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"299\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"419\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_mid\" x=\"159\" y=\"169\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"160\" y=\"189\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"120\" y=\"189\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"120\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"119\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"199\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"119\" y=\"138\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"119\" y=\"81\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"380\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"460\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"420\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"380\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"260\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"340\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"200\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"160\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"120\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"240\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"240\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"240\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"160\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"160\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"160\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"240\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"160\" y=\"50\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"80\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_15\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_wall\" x=\"415\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"375\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"294\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"253\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"174\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"134\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"159\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"495\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"455\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"94\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"334\" y=\"48\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"215\" y=\"49\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"335\" y=\"149\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"215\" y=\"149\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"15\" y=\"239\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"535\" y=\"239\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"454\" y=\"39\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"94\" y=\"39\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"60\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"161\" y=\"120\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_right\" x=\"391\" y=\"120\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"live\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_mid\" x=\"327\" y=\"220\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"chest_mid\" x=\"215\" y=\"220\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"glue\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall_fire\" x=\"494\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"54\" y=\"139\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"429\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"429\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"429\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"397\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"357\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"325\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"325\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"325\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"293\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"253\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"221\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"221\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"221\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"118\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"118\" y=\"100\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"118\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"189\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"149\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"455\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"95\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"160\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"479\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"479\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"479\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"447\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"407\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"376\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"344\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"304\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"272\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"272\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"272\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"240\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"200\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"168\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"168\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"168\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"65\" y=\"180\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"65\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"65\" y=\"220\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"136\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"96\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"375\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"175\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"535\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"495\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"295\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"255\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"55\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"15\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"455\" y=\"250\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"335\" y=\"250\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"215\" y=\"250\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"240\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1_bomb\" x=\"95\" y=\"250\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_16\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"head2\" x=\"279\" y=\"74\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"333\" y=\"85\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"222\" y=\"85\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_mid\" x=\"279\" y=\"224\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"413\" y=\"164\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"142\" y=\"164\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"414\" y=\"204\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"414\" y=\"224\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"143\" y=\"204\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"143\" y=\"224\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"343\" y=\"204\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"343\" y=\"224\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"223\" y=\"204\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"223\" y=\"224\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"342\" y=\"184\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"222\" y=\"184\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"343\" y=\"105\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"303\" y=\"105\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"263\" y=\"105\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"223\" y=\"105\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"303\" y=\"125\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"303\" y=\"145\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"303\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"263\" y=\"125\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"263\" y=\"145\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"263\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"376\" y=\"125\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"376\" y=\"145\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"376\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"180\" y=\"125\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"180\" y=\"145\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"180\" y=\"165\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"423\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"383\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"303\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"263\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"183\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"143\" y=\"185\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"450\" y=\"214\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"104\" y=\"215\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"540\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"500\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"460\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"420\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"380\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"340\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"300\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"260\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"220\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"180\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"140\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"100\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"60\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"20\" y=\"245\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg4\" x=\"64\" y=\"215\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg4\" x=\"103\" y=\"175\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg4\" x=\"142\" y=\"135\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg4\" x=\"182\" y=\"95\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg3\" x=\"490\" y=\"215\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg3\" x=\"453\" y=\"175\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg3\" x=\"414\" y=\"135\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_trg3\" x=\"374\" y=\"95\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_17\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_wall_fire\" x=\"274\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"235\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"275\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"315\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"235\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"355\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"315\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"195\" y=\"170\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"235\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"275\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"330\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"330\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"330\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"298\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"258\" y=\"120\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"226\" y=\"110\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"226\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"226\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"275\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"315\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"505\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"505\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"425\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"425\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"465\" y=\"96\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-2\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"2\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"125\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"125\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"45\" y=\"106\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"45\" y=\"86\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"85\" y=\"96\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"483\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"443\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"523\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"403\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"145\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"105\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"65\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"25\" y=\"126\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"124\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-124\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"526\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"393\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"148\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain_long\" x=\"15\" y=\"-451\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"121\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"-121\" mtype=\"sin\" steps=\"150\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_18\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"head2\" x=\"835\" y=\"130\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"1015\" y=\"140\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_left\" x=\"655\" y=\"140\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"935\" y=\"130\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"head4\" x=\"735\" y=\"130\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"474\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"434\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"394\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"354\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"314\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"274\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"234\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"194\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"154\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"114\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall\" x=\"74\" y=\"80\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_mid\" x=\"315\" y=\"140\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"chest_mid\" x=\"235\" y=\"140\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"score\" bonuses_random=\"1\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"482\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"482\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"482\" y=\"140\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"wall_arka2\" x=\"450\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"-10\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"10\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"wall_arka1\" x=\"410\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"-10\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"10\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"379\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"379\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"379\" y=\"140\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"275\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"275\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"275\" y=\"140\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"171\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"171\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"171\" y=\"140\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"68\" y=\"100\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_mid\" x=\"68\" y=\"120\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"column_down\" x=\"68\" y=\"140\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"wall_arka2\" x=\"139\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-553\" deltay=\"-10\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"553\" deltay=\"10\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"wall_arka1\" x=\"99\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"-10\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"10\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain\" x=\"1055\" y=\"-5\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain\" x=\"575\" y=\"-5\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"1055\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"1015\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"975\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"935\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"895\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"855\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"815\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"775\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"735\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"695\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"655\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"615\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"575\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"1015\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"975\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"935\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"895\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"855\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"815\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"775\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"735\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"695\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"655\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"615\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"1035\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"995\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"955\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"915\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"875\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"835\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"795\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"755\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"715\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"675\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"635\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"595\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain\" x=\"515\" y=\"-5\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_chain\" x=\"35\" y=\"-5\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"515\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"475\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"435\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"395\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"355\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"315\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"275\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"235\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"195\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"155\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"115\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"75\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_grass\" x=\"35\" y=\"160\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"475\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"435\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"395\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"355\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"315\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"275\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"235\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"195\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"155\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"115\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_sand\" x=\"75\" y=\"200\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"455\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"335\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"215\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"95\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"180\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"sin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"545\" deltay=\"0\" mtype=\"sin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_19\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"head1_bomb\" x=\"270\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"348\" y=\"17\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"344\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"270\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"193\" y=\"17\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"199\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"311\" y=\"17\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"271\" y=\"17\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"231\" y=\"17\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"311\" y=\"37\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"231\" y=\"37\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"231\" y=\"57\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"311\" y=\"57\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"311\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"231\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"271\" y=\"158\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"311\" y=\"98\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"271\" y=\"98\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"231\" y=\"98\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"311\" y=\"118\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"231\" y=\"118\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"231\" y=\"138\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"311\" y=\"138\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"311\" y=\"158\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"231\" y=\"158\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"311\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"271\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"231\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"311\" y=\"179\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"271\" y=\"179\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"231\" y=\"179\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"311\" y=\"199\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"231\" y=\"199\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"231\" y=\"219\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"311\" y=\"219\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"311\" y=\"239\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"231\" y=\"239\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"71\" y=\"260\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head1\" x=\"470\" y=\"259\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"471\" y=\"97\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"71\" y=\"97\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"393\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka2\" x=\"399\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"471\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"live\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"511\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"471\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"431\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"511\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"471\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"431\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"511\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"431\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"431\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"511\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"511\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"431\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"148\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"wall_arka1\" x=\"144\" y=\"77\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"47\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"67\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"87\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"107\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"71\" y=\"188\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"triple\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"128\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"148\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"168\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"188\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"111\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"71\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_grass\" x=\"31\" y=\"289\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"111\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"71\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"31\" y=\"209\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"111\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_up\" x=\"31\" y=\"229\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"31\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_mid\" x=\"111\" y=\"249\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"111\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"column_down\" x=\"31\" y=\"269\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object name=\"level_20\" >"; str = str + "<var name=\"levelname\" value=\"First level\" />"; str = str + "<var name=\"startCaretX\" value=\"-15\" />"; str = str + "<var name=\"startCaretY\" value=\"85\" />"; str = str + "<var name=\"startCaretSpeedX\" value=\"0\" />"; str = str + "<var name=\"startCaretSpeedY\" value=\"10\" />"; str = str + "<var name=\"bonuses_random\" value=\"0\" />"; str = str + "<array name=\"level\" >"; str = str + "<object t=\"block_rock\" x=\"535\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"495\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"55\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"15\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"295\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"255\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"415\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"375\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"175\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"135\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"295\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"255\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"535\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"495\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"55\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"15\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_rock\" x=\"1135\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"575\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"615\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"655\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"695\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"735\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"775\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"815\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"855\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"895\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"935\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"975\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1015\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1055\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"1095\" y=\"110\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"600\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-545\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-505\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-465\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-425\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-385\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-345\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-305\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-265\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-225\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-185\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-145\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-105\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-65\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_rock\" x=\"-25\" y=\"170\" plane=\"1\" delta=\"10, 10\" >"; str = str + "<array name=\"moving\" >"; str = str + "<object action=\"wait\" startByHit=\"0\" steps=\"100\"/>"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"0\" deltay=\"0\" mtype=\"lin\" steps=\"100\" />"; str = str + "<object action=\"move\" startByHit=\"0\" deltax=\"-560\" deltay=\"0\" mtype=\"lin\" steps=\"50\" />"; str = str + "</array>"; str = str + "</object>"; str = str + "<object t=\"block_wall_fire\" x=\"375\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall_fire\" x=\"175\" y=\"69\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"335\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head4\" x=\"215\" y=\"80\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"455\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head3\" x=\"95\" y=\"140\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"455\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"wall\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"455\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"95\" y=\"70\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"glue\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"95\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"70\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"90\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"375\" y=\"130\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"widecaret\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"335\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"175\" y=\"130\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"triple\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"215\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"15\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"135\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"495\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"415\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"535\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"55\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"495\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"255\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"295\" y=\"150\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"55\" y=\"130\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_right\" x=\"455\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"fire\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"455\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"chest_left\" x=\"95\" y=\"190\" plane=\"1\" delta=\"10, 10\" bonuses_names=\"lazer\" bonuses_random=\"1\" />"; str = str + "<object t=\"block_stone\" x=\"95\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"295\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"255\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"375\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_wall\" x=\"175\" y=\"190\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"335\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"head2\" x=\"215\" y=\"200\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"135\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"415\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"375\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "<object t=\"block_stone\" x=\"175\" y=\"210\" plane=\"1\" delta=\"10, 10\" />"; str = str + "</array>"; str = str + "</object> "; str = str + "</object>"; str = str + "</settings>"; debug("Loading main settings XML file..."); createXML(); _global.allowToStart = false; _global.tilesInited = false; mainOEF = function () { clockAdder(); if (_global.gameInProcess) { var _local7 = Math.round((getTimer() - gameTimeStart) / 1000); var _local6 = _local7 % 60; if (_local6 < 10) { _local6 = "0" + _local6; } var _local5 = Math.floor(_local7 / 60); _root.tfTimer.text = (_local5 + ":") + _local6; _global.levelTime = _global.levelTime + (getTimer() - _global.levelTimeS); _global.levelTimeF++; _local7 = Math.round(_global.levelTime / 1000); _local6 = _local7 % 60; if (_local6 < 10) { _local6 = "0" + _local6; } _local5 = Math.floor(_local7 / 60); if (_local5 < 10) { _local5 = "0" + _local5; } _root.tf_time.text = (_local5 + ":") + _local6; if (_global.dieAnim) { _global.dieAnim = false; _global.dieAnimPause = true; _root.ballDied._visible = true; _root.ballDied.gotoAndPlay(2); _global.gameInProcess = false; } } if (_global.gameInProcess) { if (_global.tileCounter <= _global.envS.autoDieTileCount) { if ((levelTimeF - lastCollisionTimeF) >= _global.envS.autoDieInterval) { do { var tileToDie = allTiles[Math.floor(Math.random() * allTiles.length)]; } while (!tileToDie.inGame); tileToDie.explodeMe(0); } } var _local4 = 0; while (_local4 < _global.allTiles.length) { var _local3 = _global.allTiles[_local4]; if (_local3.imExploded) { _local3.exCount--; if (_local3.exCount <= 0) { _local3.miniExplode(); _local3.live = 1; _local3.decreaseLive(1); _local4--; } } _local4++; } if (_global.tileCounter == 0) { trace("LEVEL ENDS"); _global.levelNum++; _global.gameInProcess = false; _global.sound.play("LevelDone"); if (noSet(_global.levels["level_" + levelNum])) { trace("GAME OVER - \u0418\u0413\u0420\u0410 \u041E\u041A\u041E\u041D\u0427\u0415\u041D\u0410 \u041F\u041E\u0411\u0415\u0414\u041E\u0419"); _root.wnd_gamecomplete._visible = true; _root.wnd_gamecomplete.gotoAndPlay(2); } else { _root.wnd_next._visible = true; _root.wnd_next.gotoAndPlay(2); } } } _global.levelTimeS = getTimer(); }; _global.clock = 0; clockAdder = function () { _global.clock++; }; _global.keyLogger = function (flag) { if (_global.gameOver) { return(undefined); } if (_global.dieAnimPause) { return(undefined); } if (((Key.isDown(27) || (Key.isDown(32))) || (Key.isDown(80))) || (flag)) { if (_global.gameInProcess) { _global.gameInProcess = false; _global.gameInMoving = false; _root.wnd_pause._visible = true; } else { _global.gameInProcess = true; _global.gameInMoving = true; _root.wnd_pause._visible = false; _global.levelTimeS = getTimer(); } } if (_global.envS.debug == 1) { if (Key.isDown(8)) { if (_global.noSet(_global.scrollBG_debugFlag)) { _global.scrollBG_debugFlag = false; } _global.scrollBG_debugFlag = !_global.scrollBG_debugFlag; if (_global.scrollBG_debugFlag) { _root.bg.setMotion(0, 0); } } } }; _global.stopAllEngines = function () { Key.removeListener(_global.keyGetter); Mouse.removeListener(_global.keyGetter); delete _global.keyGetter; _global.gameInProcess = false; _global.gameInMove = false; _global.queue.clear(); _global.queue.removeMovieClip(); delete _global.queue; }; _global.killOldLevel = function () { var _local2 = 0; while (_local2 < _global.allTiles.length) { _global.allTiles[_local2].removeMovieClip(); _local2++; } _local2 = 0; while (_local2 < _global.ballz.length) { _global.ballz[_local2].removeMovieClip(); _local2++; } _local2 = 0; while (_local2 < _global.bonusez.length) { _global.bonusez[_local2].removeMovieClip(); _local2++; } player.removeMovieClip(); }; _global.getAngleDelta = function (a, b, c) { while (a > 180) { a = a - 360; } while (a < -180) { a = a + 360; } var _local7 = b - 360; var _local6 = b; var _local5 = b + 360; var _local11 = _local7 - a; var _local10 = _local6 - a; var _local9 = _local5 - a; var _local4 = Math.abs(_local11); var _local3 = Math.abs(_local10); var _local8 = Math.abs(_local9); var _local2 = Math.min(_local4, _local3); _local2 = Math.min(_local2, _local8); if (_local2 == _local4) { var _local13 = _local7; } if (_local2 == _local3) { var _local13 = _local6; } if (_local2 == _local8) { var _local13 = _local5; } return((_local13 - a) / c); }; _global.createLevel = function () { trace("creating Level"); if (noSet(currLevel)) { debug("Cannot find new level declaration"); return(undefined); } delete _global.allTiles; _global.allTiles = new Array(); var _local7 = -100000; var _local6 = -100000; var _local9 = 100000 /* 0x0186A0 */; var _local8 = 100000 /* 0x0186A0 */; var _local4 = 0; while (_local4 < currLevel.level.length) { var _local3 = new Object(); for (var _local10 in currLevel.level[_local4]) { _local3[_local10] = currLevel.level[_local4][_local10]; } for (var _local10 in _global.tilesDescr[_local3.t]) { _local3[_local10] = _global.tilesDescr[_local3.t][_local10]; } if (noSet(_local3.t)) { } else if (_local3.t == "screenBG") { } else { if (noSet(_local3.plane)) { _local3.plane = 1; } else { _local3.plane = parseInt(_local3.plane); } if (noSet(_local3.hit)) { _local3.hit = 1; } else { _local3.hit = parseInt(_local3.hit); } if (noSet(_local3.inGame)) { _local3.inGame = 1; } else { _local3.inGame = parseInt(_local3.inGame); } if (_local3.live == -10) { _local3.inGame = 0; } var _local5 = _root.all["top" + _local3.plane]; var _local12 = _local5.getNextHighestDepth(); var _local11 = _local5.attachMovie("tileMC", "tt" + _local12, _local12); allTiles.push(_local11); _local11.makeTile(_local3.t); _local11.setLives(_local3.live); _local11.setHitable(_local3.hit); _local11.setIce(_local3.iceBlock); _local11.setFire(_local3.fireBlock); _local11.setBallBlock(_local3.ballBlock); _local11.setInGame(_local3.inGame); _local11.setBonus(_local3.bonuses_names, _local3.bonuses_random); _local11.setScore(_local3.score); _local11.setRotation(_local3.rotation); _local11.setPortal(_local3.portal, _local3.portalExits); _local11.setExploded(_local3.explode, _local3.exradius, _local3.exxdelta, _local3.exydelta, _local3.exspeed); _local11.initMove(_local3.moving); _local11._x = parseInt(_local3.x); _local11._y = parseInt(_local3.y); _local7 = Math.max(_local7, _local11.bb_loc_arr.max.x + _local11._x); _local6 = Math.max(_local6, _local11.bb_loc_arr.max.y + _local11._y); _local9 = Math.min(_local9, _local11.bb_loc_arr.min.x + _local11._x); _local8 = Math.min(_local8, _local11.bb_loc_arr.min.y + _local11._y); } _local4++; } var _local14 = _global.envS.centerBlockX; var _local13 = _global.envS.centerBlockY; if (!noSet(currLevel.centerBlockX)) { _local14 = currLevel.centerBlockX; } if (!noSet(currLevel.centerBlockY)) { _local13 = currLevel.centerBlockY; } _global.levelOffsetX = 0; _global.levelOffsetY = 0; _global.tileCounter = 0; _local4 = 0; while (_local4 < allTiles.length) { if (currLevel.useCenterBlock != 0) { allTiles[_local4]._x = allTiles[_local4]._x + levelOffsetX; allTiles[_local4]._y = allTiles[_local4]._y + levelOffsetY; } allTiles[_local4].initObj(); if ((allTiles[_local4].inGame && (allTiles[_local4].hit)) && (!allTiles[_local4].isPortal)) { _global.tileCounter++; } _local4++; } var _local12 = _root.all.top1.getNextHighestDepth(); var _local11 = _root.all.top1.attachMovie("tileMC", "tt" + _local12, _local12); _local11.makeTile("leftBorder", true); allTiles.unshift(_local11); _local11.initObj(); _local11.setLives(-10); _local11.isNeverBreak = true; _local12 = _root.all.top1.getNextHighestDepth(); _local11 = _root.all.top1.attachMovie("tileMC", "tt" + _local12, _local12); _local11.makeTile("rightBorder", true); allTiles.unshift(_local11); _local11.initObj(); _local11.setLives(-10); _local11.isNeverBreak = true; _local12 = _root.all.top1.getNextHighestDepth(); _local11 = _root.all.top1.attachMovie("tileMC", "tt" + _local12, _local12); _local11.makeTile("topBorder", true); allTiles.unshift(_local11); _local11.initObj(); _local11.setLives(-10); _local11.isNeverBreak = true; _local12 = _root.all.top1.getNextHighestDepth(); _local11 = _root.all.top1.attachMovie("tileMC", "tt" + _local12, _local12); _local11.makeTile("bottomBorder", true); allTiles.unshift(_local11); _local11.initObj(); _local11.setLives(-10); _local11.isNeverBreak = true; _local12 = _root.all.top1.getNextHighestDepth(); _local11 = _root.all.top1.attachMovie("tileMC", "caretDummy", _local12); _local11._x = player._x; _local11._y = player._y; _local11.makeTile("caret"); allTiles.unshift(_local11); _local11.initObj(); _local11.setLives(-10); _local11.isNeverBreak = true; player.viewMC = _local11; _local11.angleRatio = player_caret.caretAngle; }; _global.countLine = function (line) { line.x1 = roundNums(line.x1); line.y1 = roundNums(line.y1); line.x2 = roundNums(line.x2); line.y2 = roundNums(line.y2); line.a = (line.y2 - line.y1) / (line.x2 - line.x1); line.k = line.y1 - (line.a * line.x1); line.dx = line.x2 - line.x1; line.dy = line.y2 - line.y1; var _local4 = -line.dx; var _local3 = line.dy; line.d = Math.sqrt((_local4 * _local4) + (_local3 * _local3)); line.nx = _local3 / line.d; line.ny = _local4 / line.d; line.nal = Math.atan2(line.ny, line.nx); line.nal_gr = line.nal * _global.PI2; }; _global.crossLines = function (line1, line2) { var _local1 = new Object(); _local1.crossed = false; _local1.actualCrossed = false; if (line1.a == line2.a) { return(_local1); } if ((!isFinite(line1.a)) || (!isFinite(line2.a))) { if ((!isFinite(line1.a)) && (!isFinite(line2.a))) { return(_local1); } if (!isFinite(line1.a)) { var _local4 = line1.x1; var _local5 = (line2.a * _local4) + line2.k; } else if (!isFinite(line2.a)) { var _local4 = line2.x1; var _local5 = (line1.a * _local4) + line1.k; } } else { var _local4 = (line2.k - line1.k) / (line1.a - line2.a); var _local5 = (line1.a * _local4) + line1.k; } var _local4 = roundNums(_local4); var _local5 = roundNums(_local5); var _local10 = Math.min(line1.x1, line1.x2); var _local8 = Math.max(line1.x1, line1.x2); var _local6 = Math.min(line2.x1, line2.x2); var _local12 = Math.max(line2.x1, line2.x2); var _local9 = Math.min(line1.y1, line1.y2); var _local7 = Math.max(line1.y1, line1.y2); var _local13 = Math.min(line2.y1, line2.y2); var _local11 = Math.max(line2.y1, line2.y2); _local1.crossed = true; _local1.x = _local4; _local1.y = _local5; if ((((_local4 >= _local10) && (_local4 <= _local8)) && (_local4 >= _local6)) && (_local4 <= _local12)) { if ((((_local5 >= _local9) && (_local5 <= _local7)) && (_local5 >= _local13)) && (_local5 <= _local11)) { _local1.actualCrossed = true; _local1.dx1 = roundNums(_local4 - line1.x1); _local1.dy1 = roundNums(_local5 - line1.y1); _local1.d1 = roundNums(Math.sqrt((_local1.dx1 * _local1.dx1) + (_local1.dy1 * _local1.dy1))); _local1.dx2 = roundNums(line1.x2 - _local4); _local1.dy2 = roundNums(line1.y2 - _local5); _local1.d2 = roundNums(Math.sqrt((_local1.dx2 * _local1.dx2) + (_local1.dy2 * _local1.dy2))); _local1.dox1 = roundNums(_local4 - line2.x1); _local1.doy1 = roundNums(_local5 - line2.y1); _local1.do1 = roundNums(Math.sqrt((_local1.dox1 * _local1.dox1) + (_local1.doy1 * _local1.doy1))); _local1.dox2 = roundNums(line2.x2 - _local4); _local1.doy2 = roundNums(line2.y2 - _local5); _local1.do2 = roundNums(Math.sqrt((_local1.dox2 * _local1.dox2) + (_local1.doy2 * _local1.doy2))); _local1.al = roundNums(Math.atan2(line1.dy, line1.dx)); _local1.dal = roundNums(Math.atan2(line2.ny, line2.nx) - _local1.al); _local1.new_al = roundNums((_local1.al + (2 * _local1.dal)) + Math.PI); _local1.new_dx2 = roundNums(Math.cos(_local1.new_al) * _local1.d2); _local1.new_dy2 = roundNums(Math.sin(_local1.new_al) * _local1.d2); return(_local1); } return(_local1); } return(_local1); }; _global.crossLineAndCircle = function (line, circle) { var _local2 = new Object(); _local2.points = new Array(); _local2.pointsActual = new Array(); _local2.crossed = false; _local2.actualCrossed = false; if (!isFinite(line.a)) { var _local7 = line.x1 - circle.x; if (Math.abs(_local7) > circle.r) { return(_local2); } _local2.crossed = true; if (Math.abs(_local7) == circle.r) { var _local14 = new Object(); _local14.x = line.x1; _local14.y = circle.y; _local2.points.push(_local14); } else if (Math.abs(_local7) < circle.r) { var _local14 = new Object(); _local14.x = line.x1; _local14.y = roundNums(circle.y - Math.sqrt((circle.r * circle.r) - (_local7 * _local7))); _local2.points.push(_local14); _local14 = new Object(); _local14.x = line.x1; _local14.y = roundNums(circle.y + Math.sqrt((circle.r * circle.r) - (_local7 * _local7))); _local2.points.push(_local14); } } else { var _local15 = 1 + (line.a * line.a); var _local13 = 2 * ((line.a * (line.k - circle.y)) - circle.x); var _local16 = ((((circle.x * circle.x) + (circle.y * circle.y)) + (line.k * line.k)) - (circle.r * circle.r)) - ((2 * circle.y) * line.k); var _local12 = (_local13 * _local13) - ((4 * _local15) * _local16); if (_local12 < 0) { return(_local2); } _local2.crossed = true; if (_local12 == 0) { var _local14 = new Object(); _local14.x = roundNums((-_local13) / (2 * _local15)); _local14.y = roundNums((line.a * _local14.x) + line.k); _local2.points.push(_local14); } else if (_local12 > 0) { var _local14 = new Object(); _local14.x = roundNums(((-_local13) + Math.sqrt(_local12)) / (2 * _local15)); _local14.y = roundNums((line.a * _local14.x) + line.k); _local2.points.push(_local14); _local14 = new Object(); _local14.x = roundNums(((-_local13) - Math.sqrt(_local12)) / (2 * _local15)); _local14.y = roundNums((line.a * _local14.x) + line.k); _local2.points.push(_local14); } } var _local11 = Math.min(line.x1, line.x2); var _local9 = Math.max(line.x1, line.x2); var _local10 = Math.min(line.y1, line.y2); var _local8 = Math.max(line.y1, line.y2); var _local5 = 0; while (_local5 < _local2.points.length) { var _local3 = _local2.points[_local5]; if ((((_local3.x >= _local11) && (_local3.x <= _local9)) && (_local3.y >= _local10)) && (_local3.y <= _local8)) { _local2.pointsActual.push(_local3); _local2.actualCrossed = true; } _local5++; } _local2.d1 = 0; if (_local2.actualCrossed) { _local2.d1 = 100000000 /* 0x5F5E100 */; _local5 = 0; while (_local5 < _local2.pointsActual.length) { var _local1 = _local2.pointsActual[_local5]; _local1.dx1 = roundNums(line.x2 - _local1.x); _local1.dy1 = roundNums(line.y2 - _local1.y); _local1.d1 = Math.sqrt((_local1.dx1 * _local1.dx1) + (_local1.dy1 * _local1.dy1)); if (_local1.d1 < _local2.d1) { _local2.d1 = _local1.d1; _local2.dx1 = _local1.dx1; _local2.dy1 = _local1.dy1; _local2.x = _local1.x; _local2.y = _local1.y; } _local5++; } } return(_local2); }; _global.initTiles = function () { if (tilesInited) { return(undefined); } _global.tilesInited = true; _global.tilesDescr.leftBorder = new Object(); _global.tilesDescr.leftBorder.bb = new Array(borders.left, borders.top, borders.left, borders.bottom).join(); _global.tilesDescr.leftBorder.sw = new Array(borders.left, borders.top, borders.left, borders.bottom).join(); _global.tilesDescr.rightBorder = new Object(); _global.tilesDescr.rightBorder.bb = new Array(borders.right, borders.top, borders.right, borders.bottom).join(); _global.tilesDescr.rightBorder.sw = new Array(borders.right, borders.bottom, borders.right, borders.top).join(); _global.tilesDescr.topBorder = new Object(); _global.tilesDescr.topBorder.bb = new Array(borders.left, borders.top, borders.right, borders.top).join(); _global.tilesDescr.topBorder.sw = new Array(borders.right, borders.top, borders.left, borders.top).join(); _global.tilesDescr.bottomBorder = new Object(); _global.tilesDescr.bottomBorder.bb = new Array(borders.left, borders.bottom, borders.right, borders.bottom).join(); _global.tilesDescr.bottomBorder.sw = new Array(borders.left, borders.bottom, borders.right, borders.bottom).join(); _global.tilesDescr.caret = new Object(); _global.tilesDescr.caret.bb = new Array((-player_caret.width) / 5, (-player_caret.height) / 5, player_caret.width / 5, player_caret.height / 5).join(); _global.tilesDescr.caret.sw = new Array((-player_caret.width) / 5, (-player_caret.height) / 5, player_caret.width / 5, (-player_caret.height) / 5).join(); }; _global.roundNums = function (a, b) { if (_global.noSet(b)) { b = 9; } if (typeof(a) != "number") { return(a); } return(Math.round(a * parseFloat("1e" + b)) / parseFloat("1e" + b)); }; _global.changePlayerLives = function (delta, noNewBall) { if (!(noNewBall === true)) { noNewBall = false; } _global.playerLivez = _global.playerLivez + delta; _root.tf_lives.text = _global.playerLivez; if (_global.playerLivez == 0) { _global.wallTile.decreaseLive(10000); _global.player.rchangeDim(_global.player_caret.width); trace("\u041A\u041E\u041D\u0415\u0426 \u0418\u0413\u0420\u042B - \u041F\u0420\u041E\u0418\u0413\u0420\u042B\u0428!!!"); _global.sound.play("GameOver"); _global.gameInProcess = false; _root.wnd_gameover._visible = true; _root.wnd_gameover.gotoAndPlay(2); } else if ((delta < 0) && (!noNewBall)) { _global.wallTile.decreaseLive(10000); _global.player.rchangeDim(_global.player_caret.width); player.setMode("none"); _global.dieAnim = true; _global.sound.play("byeball"); } }; _global.makeAutoball = function () { var _local3 = _root.all.blz.attachMovie("ballContainer", "ballMC" + _root.all.blz.getNextHighestDepth(), _root.all.blz.getNextHighestDepth()); _local3.initObj("simpleBall", currLevel.startCaretSpeedX, currLevel.startCaretSpeedY); _local3.inQueue(50); _global.ballz.push(_local3); if (_global.playerLivez == undefined) { _global.playerLivez = 0; changePlayerLives(_global.envS.startLives); } if (startGlueTime != 0) { _local3.moveTo(player._x + currLevel.startCaretX, (player._y - player.h) - _local3.hh); _global.player.gluedChangedTime = 0; _global.player.gluedChangedMaxTime = _global.envS.startGlueTime; _global.player.img.glue._visible = true; _global.player.makeGlued(_local3); _global.player.singleGlued = true; } else { _local3.moveTo(currLevel.startCaretX, currLevel.startCaretY); _global.player.img.glue._visible = false; } _global.lastCollisionTimeF = _global.levelTimeF; }; _global.changeLevelScore = function (sc) { _global.levelScore = _global.levelScore + sc; _root.tf_score.text = levelScore; }; nextFrame();
Frame 7
stop(); _global.levelNum = 1; delete _global.playerLivez; delete _global.levelScore; trace("set level num to " + levelNum);
Instance of Symbol 443 MovieClip "btn_sound" in Frame 7
onClipEvent (load) { if (!sound.enable) { gotoAndStop (2); } }
Frame 8
stop(); if (noNewGame) { playBtn._visible = false; }
Frame 9
stop(); trace("in game frame " + levelNum); if (_global.levels["level_" + levelNum] != undefined) { _global.allowToStart = true; globalStart(); }
Symbol 5 MovieClip Frame 1
if (!((_global.envS.debug == 1) && (_global.envS.markerDebug == 1))) { _visible = false; }
Instance of Symbol 6 MovieClip in Symbol 10 MovieClip [block_stone] Frame 1
onClipEvent (enterFrame) { if (this._parent._parent.live > 1) { this._parent.gotoAndStop(1); } else if (this._parent._parent.live == 1) { this._parent.gotoAndStop(2); } }
Symbol 512 MovieClip [__Packages.queuedObject] Frame 0
class queuedObject extends MovieClip { var _x, _y, ticket; function queuedObject () { super(); x = Math.round(_x); y = Math.round(_y); } function inQueue(a) { if (!init) { if (_global.noSet(a)) { a = 50; } ticket = _global.queue.addFunc(oEF, this, a); init = true; } } function outQueue() { if (init) { _global.queue.remove(ticket); init = false; } } function oEF() { } var x = 0; var y = 0; var init = false; }
Symbol 513 MovieClip [__Packages.tile] Frame 0
class tile extends queuedObject { var angleRatio, bonuses_names, portalExit, score, type, image, attachMovie, getNextHighestDepth, tf, myTile, bb_loc_arr, ss_loc_arr, live, bonuses_random, moveDescr, init, inQueue, moveStep, moveAction, _rotation, bb_arr, _x, _y, ss_arr, lines, box, createEmptyMovieClip, onEnterFrame, outQueue, moveStepsX, moveStepsY, moveStepsR, startX, startY, startR, finalX, finalY, finalR; function tile () { super(); angleRatio = 0; bonuses_names = new Array(); portalExit = new Array(); score = _global.envS.score; } function makeTile(li, noVis) { if (_global.noSet(noVis)) { noVis = false; } if (_global.noSet(li)) { type = "player"; } else { type = li; if (!noVis) { image = attachMovie(type, "image", getNextHighestDepth()); if (image == undefined) { trace("Cannot create visual part of tile " + type); } tf = image.tf; } } myTile = _global.tilesDescr[type]; if (_global.noSet(myTile)) { _global.debug(("Init failes: cannot find tile declaration '" + type) + "'"); } initTileDescription(); } function initTileDescription() { var _local4 = myTile.bb.split(","); bb_loc_arr = new Object(); bb_loc_arr.min = new Object(); bb_loc_arr.max = new Object(); bb_loc_arr.min.x = parseInt(_local4[0]); bb_loc_arr.min.y = parseInt(_local4[1]); bb_loc_arr.max.x = parseInt(_local4[2]); bb_loc_arr.max.y = parseInt(_local4[3]); bb_loc_arr.width = bb_loc_arr.max.x - bb_loc_arr.min.x; bb_loc_arr.height = bb_loc_arr.max.y - bb_loc_arr.min.y; ss_loc_arr = new Array(); _local4 = myTile.sw.split(","); var _local3 = 0; while (_local3 < _local4.length) { var _local2 = new Object(); _local2.x = parseInt(_local4[_local3]); _local2.y = parseInt(_local4[_local3 + 1]); ss_loc_arr.push(_local2); _local3 = _local3 + 2; } } function setLives(n) { if (!_global.noSet(n)) { live = parseInt(n); tf.text = ""; if (live > 1) { tf.text = String(live); } } if (_global.noSet(live)) { live = 1; } } function setHitable(n) { hit = ((n == 1) ? true : false); } function setInGame(n) { inGame = ((n == 1) ? true : false); } function setIce(n) { isIce = ((n == 1) ? true : false); if (isIce) { image.blockMode.gotoAndStop("ice"); } } function setFire(n) { isFire = ((n == 1) ? true : false); if (isFire) { image.blockMode.gotoAndStop("fire"); } } function setBallBlock(n) { isBallBlock = ((n == 1) ? true : false); } function setScore(sc) { if (!_global.noSet(sc)) { score = sc; } } function setExploded(flag, rd, xd, yd, exs) { if (flag == 1) { isExplode = true; if (!_global.noSet(rd)) { explodeR = rd; } if (!_global.noSet(xd)) { explodeX = xd; } if (!_global.noSet(yd)) { explodeY = yd; } if (!_global.noSet(exs)) { exSpeed = exs; } if (exSpeed == 0) { exSpeed = _global.envS.exSpeed; } } } function setPortal(str, exits) { if (!_global.noSet(str)) { isPortal = true; portalId = str; portalExit = _global.prepareArrayString(exits); if (_global.noSet(_global.portalz[portalId])) { _global.portalz[portalId] = this; } else { trace(("\u041E\u0428\u0418\u0411\u041A\u0410! \u041F\u041E\u0412\u0422\u041E\u0420\u041D\u041E\u0415 \u041E\u0411\u042A\u042F\u0412\u041B\u0415\u041D\u0418\u0415 \u041F\u041E\u0420\u0422\u0410\u041B\u0410 (" + portalId) + ")"); } } } function setBonus(ns, rnd) { if (!_global.noSet(ns)) { bonuses_names = ns.split(","); var _local3 = 0; while (_local3 < bonuses_names.length) { bonuses_names[_local3] = _global.trim(bonuses_names[_local3]); _local3++; } } if (!_global.noSet(rnd)) { bonuses_random = rnd; } } function initMove(md) { if (_global.noSet(md)) { return(undefined); } moveDescr = md; if (!_global.noSet(moveDescr)) { if (!init) { inQueue(30); } moveStep = -1; moveAction = -1; } } function setRotation(r) { var _local2 = parseInt(r); if (!init) { inQueue(30); } _rotation = _local2; if (_local2 != 0) { initObj(); } } function initObj(notNeedDrawing) { if (_global.noSet(notNeedDrawing)) { notNeedDrawing = false; } bb_arr = new Object(); bb_arr.min = new Object(); bb_arr.max = new Object(); if (_rotation != 0) { var _local18 = bb_loc_arr.min.x; var _local16 = bb_loc_arr.min.y; var _local17 = bb_loc_arr.max.x; var _local14 = bb_loc_arr.max.y; var _local15 = bb_loc_arr.min.x; var _local24 = bb_loc_arr.max.y; var _local25 = bb_loc_arr.max.x; var _local23 = bb_loc_arr.min.y; var _local22 = Math.atan2(_local16, _local18); var _local33 = Math.sqrt((_local18 * _local18) + (_local16 * _local16)); var _local21 = Math.atan2(_local14, _local17); var _local32 = Math.sqrt((_local17 * _local17) + (_local14 * _local14)); var _local20 = Math.atan2(_local24, _local15); var _local31 = Math.sqrt((_local15 * _local15) + (_local24 * _local24)); var _local19 = Math.atan2(_local23, _local25); var _local30 = Math.sqrt((_local25 * _local25) + (_local23 * _local23)); var _local13 = _rotation / _global.PI2; _local22 = _local22 + _local13; _local21 = _local21 + _local13; _local20 = _local20 + _local13; _local19 = _local19 + _local13; var _local28 = (_local33 * Math.cos(_local22)) + _x; var _local29 = (_local33 * Math.sin(_local22)) + _y; var _local26 = (_local32 * Math.cos(_local21)) + _x; var _local27 = (_local32 * Math.sin(_local21)) + _y; var _local36 = (_local31 * Math.cos(_local20)) + _x; var _local37 = (_local31 * Math.sin(_local20)) + _y; var _local34 = (_local30 * Math.cos(_local19)) + _x; var _local35 = (_local30 * Math.sin(_local19)) + _y; bb_arr.min.x = Math.min(_local28, Math.min(_local26, Math.min(_local36, _local34))); bb_arr.min.y = Math.min(_local29, Math.min(_local27, Math.min(_local37, _local35))); bb_arr.max.x = Math.max(_local28, Math.max(_local26, Math.max(_local36, _local34))); bb_arr.max.y = Math.max(_local29, Math.max(_local27, Math.max(_local37, _local35))); } else { bb_arr.min.x = bb_loc_arr.min.x + _x; bb_arr.min.y = bb_loc_arr.min.y + _y; bb_arr.max.x = bb_loc_arr.max.x + _x; bb_arr.max.y = bb_loc_arr.max.y + _y; } bb_arr.width = bb_arr.max.x - bb_arr.min.x; bb_arr.height = bb_arr.max.y - bb_arr.min.y; ss_arr = new Array(); var _local13 = _rotation / _global.PI2; var _local4 = 0; while (_local4 < ss_loc_arr.length) { var _local3 = new Object(); if (_rotation != 0) { var _local9 = ss_loc_arr[_local4].x; var _local8 = ss_loc_arr[_local4].y; var _local7 = Math.atan2(_local8, _local9); var _local12 = Math.sqrt((_local9 * _local9) + (_local8 * _local8)); _local7 = _local7 + _local13; _local3.x = (_local12 * Math.cos(_local7)) + _x; _local3.y = (_local12 * Math.sin(_local7)) + _y; } else { _local3.x = ss_loc_arr[_local4].x + _x; _local3.y = ss_loc_arr[_local4].y + _y; } ss_arr.push(_local3); _local4++; } lines = new Array(); _local4 = 1; while (_local4 < ss_arr.length) { var _local3 = new Object(); _local3.x1 = ss_arr[_local4 - 1].x; _local3.y1 = ss_arr[_local4 - 1].y; _local3.x2 = ss_arr[_local4].x; _local3.y2 = ss_arr[_local4].y; _local3.index = lines.length; _global.countLine(_local3); lines.push(_local3); _local4++; } if ((!notNeedDrawing) && (_global.envS.debug == 1)) { if (_global.noSet(box)) { createEmptyMovieClip("box", getNextHighestDepth()); } box.clear(); box.lineStyle(2, 65280, 40); _local4 = 1; while (_local4 < ss_loc_arr.length) { var _local6 = ss_loc_arr[_local4 - 1]; var _local5 = ss_loc_arr[_local4]; box.moveTo(_local6.x, _local6.y); box.lineTo(_local5.x, _local5.y); if (_global.envS.normalsDebug == 1) { box.lineStyle(1, 16711680, 40); var _local11 = (_local6.x + _local5.x) / 2; var _local10 = (_local6.y + _local5.y) / 2; box.moveTo(_local11, _local10); box.lineTo(_local11 + (lines[_local4 - 1].nx * 4), _local10 + (lines[_local4 - 1].ny * 4)); box.lineStyle(2, 65280, 40); } _local4++; } } } function getAngleRatio(line, d1, d2) { if (angleRatio != 0) { var _local2 = (line.d / 2) - d1; var _local3 = (_local2 * angleRatio) / (line.d / 2); return(_local3); } return(0); } function explodeMe(cc) { if (isNeverBreak) { return(undefined); } if (isPortal) { return(undefined); } if (!hit) { return(undefined); } if (imExploded) { return(undefined); } imExploded = true; exCount = Math.round(Math.abs(cc) + 1); if (exCount == 0) { exCount = 1; } } function decreaseLive(num, who) { if (live == -10) { return(true); } if (isNeverBreak) { return(true); } if (isPortal) { return(true); } if ((num > 0) && (type != "theWall")) { _global.lastCollisionTimeF = _global.levelTimeF; } live = live - num; if (live < 0) { live = 0; } tf.text = ((live > 0) ? (String(live)) : ""); if (live <= 0) { _global.changeLevelScore(score); if (isExplode) { var _local10 = _root.all.fx.getNextHighestDepth(); var _local9 = _root.all.fx.attachMovie("explode", "expl" + _local10, _local10); _local9._x = _x; _local9._y = _y; _local9._xscale = (_local9._yscale = explodeR / 6); _local9._alpha = 60; if (explodeR != 0) { _local9._xscale = (_local9._yscale = explodeR / 6); } else if (explodeX != 0) { _local9._xscale = explodeX / 6; _local9._yscale = 50; } else if (explodeY != 0) { _local9._xscale = 50; _local9._yscale = explodeY / 6; } _global.sound.play("eexplode", _x); if (explodeR != 0) { var _local4 = 0; while (_local4 < _global.allTiles.length) { _local9 = _global.allTiles[_local4]; if ((_local9 != this) && (!_local9.isNeverBreak)) { var _local7 = _local9._x - _x; var _local6 = _local9._y - _y; var _local5 = Math.sqrt((_local7 * _local7) + (_local6 * _local6)); if (_local5 < explodeR) { _local9.explodeMe(_local5 / exSpeed); } } _local4++; } } if (explodeX != 0) { var _local4 = 0; while (_local4 < _global.allTiles.length) { _local9 = _global.allTiles[_local4]; if ((_local9 != this) && (!_local9.isNeverBreak)) { var _local7 = _local9._x - _x; var _local6 = _local9._y - _y; if (Math.abs(_local7) < explodeX) { _local9.explodeMe(_local6 / exSpeed); } } _local4++; } } if (explodeY != 0) { var _local4 = 0; while (_local4 < _global.allTiles.length) { _local9 = _global.allTiles[_local4]; if ((_local9 != this) && (!_local9.isNeverBreak)) { var _local7 = _local9._x - _x; var _local6 = _local9._y - _y; if (Math.abs(_local6) < explodeY) { _local9.explodeMe(_local7 / exSpeed); } } _local4++; } } } removeFromArray(); if ((inGame && (hit)) && (!isPortal)) { _global.tileCounter--; } onEnterFrame = _global.alphaOutQuick; outQueue(); var _local12 = (_global.noSet(bonuses_random) ? (_global.currLevelBonusesRandom) : (bonuses_random)); var _local11 = ((bonuses_names.length == 0) ? (_global.currLevelBonusesNames) : (bonuses_names)); if (Math.random() < _local12) { var _local8 = _local11[Math.floor(Math.random() * _local11.length)]; var _local10 = _root.all.bnz.getNextHighestDepth(); var _local9 = _root.all.bnz.attachMovie("bonus_" + _local8, "b" + _local10, _local10); _local9._x = _x; _local9._y = _y; if (_local8 == "bomb") { _local9.initObj(_local8, _global.envS.bonusBombSpeed); } else { _local9.initObj(_local8, _global.envS.bonusSpeed); } } return(false); } return(true); } function removeFromArray() { var _local3 = 0; while (_local3 < _global.allTiles.length) { if (_global.allTiles[_local3] == this) { _global.allTiles.splice(_local3, 1); return(undefined); } _local3++; } } function oEF() { if (moveInPause) { return(undefined); } if (!_global.gameInMoving) { return(undefined); } if (moveStep == -1) { moveAction++; if (moveAction == moveDescr.length) { moveAction = 0; } var _local15 = moveDescr[moveAction]; if (_local15.action == "move") { moveStepsX = new Array(); moveStepsY = new Array(); moveStepsR = new Array(); var _local12 = 0; var _local3 = _local15.steps; var _local5 = 0; while (_local5 < _local3) { _local12 = _local12 + Math.abs(Math.sin((_local5 * Math.PI) / _local3)); _local5++; } var _local18 = _local15.deltax / _local12; var _local16 = _local15.deltay / _local12; var _local14 = _local15.deltar / _local12; startX = _x; startY = _y; startR = _rotation; if (_local15.mtype == "sin") { var _local11 = 0; _local5 = 0; while (_local5 < _local3) { _local11 = _local11 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3)); var _local21 = _local11 * _local18; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsX.push(_local21); _local21 = _local11 * _local16; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsY.push(_local21); _local5++; } } if (_local15.mtype == "lin") { _local5 = 0; while (_local5 < _local3) { var _local21 = ((_local5 + 1) * _local15.deltax) / _local3; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsX.push(_local21); _local21 = ((_local5 + 1) * _local15.deltay) / _local3; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsY.push(_local21); _local5++; } } if (_local15.rtype == "sin") { var _local11 = 0; _local5 = 0; while (_local5 < _local3) { _local11 = _local11 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3)); var _local21 = _local14 * _local11; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsR.push(_local21); _local5++; } } if (_local15.rtype == "lin") { _local5 = 0; while (_local5 < _local3) { var _local21 = ((_local5 + 1) * _local15.deltar) / _local3; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsR.push(_local21); _local5++; } } finalX = (_global.noSet(_local15.deltax) ? (_x) : (_x + _local15.deltax)); finalY = (_global.noSet(_local15.deltay) ? (_y) : (_y + _local15.deltay)); finalR = (_global.noSet(_local15.deltar) ? (_rotation) : (_rotation + _local15.deltar)); } else if (_local15.action == "pause") { } else if (_local15.action == "orbit") { var _local8 = _x; var _local7 = _y; if (!_global.noSet(_local15.centerdeltax)) { _local8 = _x + _local15.centerdeltax; } if (!_global.noSet(_local15.centerdeltay)) { _local7 = _y + _local15.centerdeltay; } if (!_global.noSet(_local15.centerx)) { _local8 = _local15.centerx + _global.levelOffsetX; } if (!_global.noSet(_local15.centery)) { _local7 = _local15.centery + _global.levelOffsetY; } var _local20 = _x - _local8; var _local19 = _y - _local7; var _local6 = Math.sqrt((_local20 * _local20) + (_local19 * _local19)); var _local10 = Math.atan2(_local19, _local20) * _global.PI2; var _local22 = _local10 + _local15.deltaorbitr; moveStepsX = new Array(); moveStepsY = new Array(); moveStepsR = new Array(); var _local12 = 0; var _local3 = _local15.steps; var _local5 = 0; while (_local5 < _local3) { _local12 = _local12 + Math.abs(Math.sin((_local5 * Math.PI) / _local3)); _local5++; } var _local14 = _local15.deltaorbitr / _local12; var _local17 = _local15.deltar / _local12; startX = _x; startY = _y; startR = _rotation; if (_local15.otype == "lin") { _local5 = 0; while (_local5 < _local3) { var _local21 = _local10 + (((_local5 + 1) * _local15.deltaorbitr) / _local3); if (_global.noSet(_local21)) { _local21 = 0; } var _local4 = _local8 + (_local6 * Math.cos(_local21 / _global.PI2)); if (_global.noSet(_local4)) { _local4 = 0; } var _local9 = _local7 + (_local6 * Math.sin(_local21 / _global.PI2)); if (_global.noSet(_local4)) { _local4 = 0; } moveStepsX.push(_local4); moveStepsY.push(_local9); _local5++; } } if (_local15.otype == "sin") { var _local11 = 0; _local5 = 0; while (_local5 < _local3) { _local11 = _local11 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3)); var _local21 = _local10 + (_local14 * _local11); if (_global.noSet(_local21)) { _local21 = 0; } var _local4 = _local8 + (_local6 * Math.cos(_local21 / _global.PI2)); if (_global.noSet(_local4)) { _local4 = 0; } var _local9 = _local7 + (_local6 * Math.sin(_local21 / _global.PI2)); if (_global.noSet(_local4)) { _local4 = 0; } moveStepsX.push(_local4); moveStepsY.push(_local9); _local5++; } } finalX = (_global.noSet(_local15.deltaorbitr) ? (_x) : (_local8 + (_local6 * Math.cos(_local22 / _global.PI2)))); finalY = (_global.noSet(_local15.deltaorbitr) ? (_y) : (_local7 + (_local6 * Math.sin(_local22 / _global.PI2)))); if (_local15.rotateTile == 1) { if (_local15.rtype == "lin") { _local5 = 0; while (_local5 < _local3) { var _local21 = ((_local5 + 1) * _local15.deltar) / _local3; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsR.push(_local21); _local5++; } } if (_local15.rtype == "sin") { var _local11 = 0; _local5 = 0; while (_local5 < _local3) { _local11 = _local11 + Math.abs(Math.sin(((_local5 + 1) * Math.PI) / _local3)); var _local21 = _local17 * _local11; if (_global.noSet(_local21)) { _local21 = 0; } moveStepsR.push(_local21); _local5++; } } finalR = (_global.noSet(_local15.deltar) ? (_rotation) : (_rotation + _local15.deltar)); } } moveStep = 0; moveInPause = false; if (_local15.startByHit == 1) { moveInPause = true; return(undefined); } } var _local13 = false; var _local15 = moveDescr[moveAction]; if (_local15.action == "move") { var _local21 = moveStepsX[moveStep]; if (_local21 != 0) { _x = startX + _local21; _local13 = true; } _local21 = moveStepsY[moveStep]; if (_local21 != 0) { _y = startY + _local21; _local13 = true; } _local21 = moveStepsR[moveStep]; if (_local21 != 0) { _rotation = startR + _local21; _local13 = true; } if ((moveStep + 1) == _local15.steps) { _x = finalX; _y = finalY; _rotation = finalR; } } else if (_local15.action == "pause") { } else if (_local15.action == "orbit") { var _local21 = moveStepsX[moveStep]; if (_local21 != 0) { _x = moveStepsX[moveStep]; _local13 = true; } _local21 = moveStepsY[moveStep]; if (_local21 != 0) { _y = moveStepsY[moveStep]; _local13 = true; } _local21 = moveStepsR[moveStep]; if (_local21 != 0) { _rotation = startR + _local21; _local13 = true; } if ((moveStep + 1) == _local15.steps) { _x = finalX; _y = finalY; _rotation = finalR; } } moveStep++; if (moveStep == _local15.steps) { moveStep = -1; } if (_local13) { initObj(); } } function miniExplode() { var _local5 = _root.all.fx.getNextHighestDepth(); var _local4 = _root.all.fx.attachMovie("explode", "expl" + _local5, _local5); _local4._x = _x; _local4._y = _y; _local4._xscale = (_local4._yscale = 5); _local4._alpha = 60; _global.sound.play("eexplode", _x); } var width = 0; var height = 0; var hit = true; var isNeverBreak = false; var isIce = false; var isFire = false; var isBallBlock = false; var inGame = true; var step = 0; var maxStep = 0; var moveInPause = false; var isPortal = false; var portalId = ""; var isExplode = false; var explodeR = 0; var explodeX = 0; var explodeY = 0; var exSpeed = 0; var imExploded = false; var exCount = 0; }
Symbol 514 MovieClip [__Packages.caret] Frame 0
class caret extends tile { var ypos, w, h, screenl, screenr, imgX, img, imgY, moveAmount, moveRatio, glued, viewMC, mode, gluedChangedTime, gluedChangedMaxTime, _x, _y, gluedMC, gluedDeltaX, _parent, type; function caret () { super(); ypos = _global.playerSettings.yposition; w = _global.player_caret.width / 2; h = _global.player_caret.height / 2; reinitCaret(); rdimCurr = (rdimEnd = (rdimDefault = 2 * w)); screenl = _global.borders.left; screenr = _global.borders.right; trace("create caret: " + this); imgX = img._x; imgY = img._y; moveAmount = _global.player_caret.moveAmount; moveRatio = _global.player_caret.moveRatio; glued = false; } function initObj(flag) { viewMC.initObj(flag); redrawCaret(); setMode("none"); } function setMode(m, c) { img.gun.gotoAndStop(m); var _local5 = mode; mode = m; if (mode == "none") { fireCount = 0; } else { if (!_global.noSet(c)) { if (mode == _local5) { fireCount = fireCount + c; } else { fireCount = c; } } else { fireTime = -1000; } fireRatio = _global.envS[mode + "Ratio"]; } _root.tf_fires.text = fireCount; } function oEF() { if ((_global.gameInProcess && (_global.gameInMoving)) && (rdimChanged)) { rdimChangedTime++; if (rdimChangedTime >= rdimChangedMaxTime) { rchangeDim(_global.player_caret.width); } } rchangeDimenstionsStep(); onMM(); makeFire(); if (glued) { if (_global.gameInProcess && (_global.gameInMoving)) { gluedChangedTime++; if (gluedChangedTime >= gluedChangedMaxTime) { gluedChangedTime = (gluedChangedMaxTime = 0); makeFireGlued(); makeUnglued(); } } } } function makeFire(fireFlag) { if (fireFlag) { singleFire = true; } if (fireMode || (singleFire)) { if (_global.gameInProcess) { singleFire = false; if (mode != "none") { if ((_global.clock - fireTime) >= fireRatio) { var _local4 = _root.all.blz.attachMovie("ballContainer", mode + _root.all.blz.getNextHighestDepth(), _root.all.blz.getNextHighestDepth()); _local4.initObj(mode, 0, _global.envS[mode + "Speed"]); _local4.moveTo(_x + img.gun._x, _y + img.gun._y); _local4.inQueue(30); _global.ballz.push(_local4); fireTime = _global.clock; fireCount--; if (fireCount == 0) { setMode("none"); } _root.tf_fires.text = fireCount; _global.sound.play("laser", _x); } } makeFireGlued(); } } } function makeFireGlued() { if (glued) { gluedMC.glued = false; gluedMC = undefined; if (singleGlued) { singleGlued = false; makeUnglued(); } } } function makeGlued(mc) { glued = true; gluedMC = mc; gluedDeltaX = mc._x - _x; gluedMC.glued = true; } function makeUnglued() { glued = false; _global.player.img.glue._visible = false; } function onMM() { if (_global.gameInMoving) { _x = _parent._xmouse; _y = ypos; if ((_x - w) < screenl) { _x = screenl + w; } if ((_x + w) > screenr) { _x = (550 - screenl) - w; } img._x = img._x + ((imgX - img._x) / moveRatio); img._y = img._y + ((imgY - img._y) / moveRatio); if ((Math.abs(imgX - img._x) < 0.3) && (Math.abs(imgY - img._y) < 0.3)) { img._x = imgX; img._y = imgY; } if (!_global.noSet(viewMC)) { viewMC._x = _x; viewMC.initObj(); } if (!_global.noSet(gluedMC)) { gluedMC.moveTo((_x + gluedDeltaX) + img._x, ((_y - h) - gluedMC.hh) + img._y); } } } function onMouseDown() { fireMode = true; singleFire = true; } function onMouseUp() { fireMode = false; } function rchangeDim(enddim, startTime, endTime) { if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { return(undefined); } if (enddim == _global.player_caret.width) { rdimChanged = false; rdimChangedTime = (rdimChangedMaxTime = 0); } else { rdimChanged = true; rdimChangedTime = 0; if (!_global.noSet(startTime)) { rdimChangedTime = startTime; } rdimChangedMaxTime = _global.player_caret.dimChangeTime; if (!_global.noSet(endTime)) { rdimChangedMaxTime = endTime; } } rdimEnd = enddim; rchangeDimenstionsStep(); } function rchangeDimenstionsStep() { var _local3 = rdimCurr - rdimEnd; if (Math.abs(_local3) < 0.7) { return(undefined); } rdimCurr = rdimCurr + ((rdimEnd - rdimCurr) / _global.player_caret.dimChangeFactor); _local3 = rdimCurr - rdimEnd; if (Math.abs(_local3) < 0.7) { rdimCurr = rdimEnd; } w = rdimCurr / 2; reinitCaret(); redrawCaret(); } function redrawCaret() { img.rmc._x = w; img.lmc._x = -w; } function reinitCaret() { var _local3 = Math.round(w); var _local4 = h; _global.tilesDescr.caret.bb = new Array(-_local3, -_local4, _local3, _local4).join(); _global.tilesDescr.caret.sw = new Array(-_local3, -_local4, _local3, -_local4).join(); viewMC.initTileDescription(); } var fireMode = false; var singleFire = false; var fireCount = 0; var fireRatio = 0; var fireTime = 0; var singleGlued = false; var rdimChanged = false; var rdimCurr = 0; var rdimDefault = 0; var rdimEnd = 0; var rdimChangedTime = 0; var rdimChangedMaxTime = 0; }
Symbol 515 MovieClip [__Packages.ball] Frame 0
class ball extends queuedObject { var newx, x, _x, newy, y, _y, offset, maxIterations, type, image, attachMovie, getNextHighestDepth, ww, hh, ww_start, hh_start, mode, portalsCrossed, portalIgnore, outQueue, removeMovieClip; function ball () { super(); newx = (x = _x); newy = (y = _y); offset = new Object(); offset.t = _global.borders.top; offset.b = _global.borders.bottom; offset.l = _global.borders.left; offset.r = _global.borders.right; maxIterations = _global.envS.maxIterations; } function initObj(li, xs, ys) { if (_global.noSet(li)) { type = "simpleBall"; } else { type = li; } image = attachMovie(type, "image", getNextHighestDepth()); xspeed = xs; yspeed = ys; speedDefault = (fullSpeed = Math.sqrt((xs * xs) + (ys * ys))); dimDefault = 1; if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { ww = 2; hh = 2; } else { ww = (ww_start = Math.round(image._width / 2)); hh = (hh_start = Math.round(image._height / 2)); } } function oEF() { if ((_global.gameInProcess && (_global.gameInMoving)) && (modeChanged)) { modeChangedTime++; if (modeChangedTime >= modeChangedMaxTime) { setMode("none"); } } if ((_global.gameInProcess && (_global.gameInMoving)) && (speedChanged)) { speedChangedTime++; if (speedChangedTime >= speedChangedMaxTime) { changeSpeed(1); } } if ((_global.gameInProcess && (_global.gameInMoving)) && (dimChanged)) { dimChangedTime++; if (dimChangedTime >= dimChangedMaxTime) { changeDim(1); } } if (_global.gameInMoving && (!glued)) { newx = newx + xspeed; newy = newy + yspeed; changeDimenstionsStep(); checkAllTiles(); redraw(); } } function setMode(m, startTime, endTime) { if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { return(undefined); } image.gotoAndStop(m); mode = m; if (mode == "none") { modeChangedMaxTime = (modeChangedTime = 0); modeChanged = false; } if ((mode == "fire") || (mode == "acid")) { modeChanged = true; modeChangedTime = 0; if (!_global.noSet(startTime)) { modeChangedTime = startTime; } modeChangedMaxTime = _global.envS[mode + "Time"]; if (!_global.noSet(endTime)) { modeChangedMaxTime = endTime; } } } function changeSpeed(ratio, startTime, endTime) { if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { return(undefined); } if (ratio == 1) { speedChanged = false; speedChangedTime = (speedChangedMaxTime = 0); } else { speedChanged = true; speedChangedTime = 0; if (!_global.noSet(startTime)) { speedChangedTime = startTime; } speedChangedMaxTime = _global.envS.speedChangeTime; if (!_global.noSet(endTime)) { speedChangedMaxTime = endTime; } } speedRatio = ratio; fullSpeed = speedDefault * speedRatio; var _local3 = Math.atan2(yspeed, xspeed); xspeed = fullSpeed * Math.cos(_local3); yspeed = fullSpeed * Math.sin(_local3); } function changeDim(ratio, startTime, endTime) { if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { return(undefined); } if (ratio == 1) { dimChanged = false; dimChangedTime = (dimChangedMaxTime = 0); } else { dimChanged = true; dimChangedTime = 0; if (!_global.noSet(startTime)) { dimChangedTime = startTime; } dimChangedMaxTime = _global.envS.dimChangeTime; if (!_global.noSet(endTime)) { dimChangedMaxTime = endTime; } } dimRatio = ratio; changeDimenstionsStep(); } function moveTo(nx, ny) { newx = nx; newy = ny; redraw(); } function redraw() { x = newx; y = newy; _x = x; _y = y; } function checkBorder() { if ((newx - ww) < offset.l) { newx = offset.l + ww; xspeed = xspeed * -1; } if ((newx + ww) > offset.r) { newx = offset.r - ww; xspeed = xspeed * -1; } if ((newy - hh) < offset.t) { newy = offset.t + hh; yspeed = yspeed * -1; } } function checkAllTiles() { var _local58 = getTimer(); var _local17 = xspeed; var _local18 = yspeed; var _local41 = _global.allTiles; var _local54 = 0; portalsCrossed = new Array(); do { _local54++; var needToRecount = false; var _local27 = new Array(); var _local26 = new Array(); var _local39 = Math.min(x, newx) - ww; var _local37 = Math.max(x, newx) + ww; var _local38 = Math.min(y, newy) - hh; var _local36 = Math.max(y, newy) + hh; _root.lx1._x = _local39; _root.lx2._x = _local37; _root.ly1._y = _local38; _root.ly2._y = _local36; var _local23 = 0; while (_local23 < _local41.length) { var _local20 = _local41[_local23]; if (!_local20.hit) { } else if ((_local39 < _local20.bb_arr.max.x) && (_local37 > _local20.bb_arr.min.x)) { if ((_local38 < _local20.bb_arr.max.y) && (_local36 > _local20.bb_arr.min.y)) { _local26.push(_local20); } } _local23++; } var _local9 = new Array(); _local23 = 0; while (_local23 < _local26.length) { var _local15 = _local26[_local23]; var _local22 = 0; while (_local22 < _local15.lines.length) { var _local12 = _local15.lines[_local22]; var _local14 = Math.round((-100 * ww) * _local12.nx) / 100; var _local16 = Math.round((-100 * ww) * _local12.ny) / 100; var _local13 = 0; var _local24 = 0; var _local7 = 0; while (_local7 < _local9.length) { if ((_local9[_local7].x == _local14) && (_local9[_local7].y == _local16)) { _local24 = _local9[_local7]; _local13 = _local9[_local7].line; } _local7++; } if (_local13 == 0) { var _local11 = new Object(); _local11.x = _local14; _local11.y = _local16; var _local8 = new Object(); _local8.x1 = _local14 + x; _local8.y1 = _local16 + y; _local8.x2 = (_local14 + x) + _local17; _local8.y2 = (_local16 + y) + _local18; _global.countLine(_local8); _local11.line = _local8; _local9.push(_local11); _local24 = _local11; _local13 = _local8; } var _local6 = _global.crossLines(_local13, _local12); if (_local6.actualCrossed) { if (((_local17 * _local12.nx) + (_local18 * _local12.ny)) <= 0) { _local6.type = "lineline"; _local6.tile = _local15; _local6.line = _local12; _local27.push(_local6); if (_local15.isPortal) { portalsCrossed.push(_local15); } } } _local22++; } _local23++; } var _local31 = new Object(); _local31.x = x; _local31.y = y; _local31.r = ww; var _local10 = new Array(); _local23 = 0; while (_local23 < _local26.length) { var _local15 = _local26[_local23]; var _local22 = 0; while (_local22 < _local15.ss_arr.length) { var _local5 = _local15.ss_arr[_local22]; var _local13 = 0; var _local24 = 0; var _local7 = 0; while (_local7 < _local10.length) { if ((_local10[_local7].x == _local5.x) && (_local10[_local7].y == _local5.y)) { _local24 = _local10[_local7]; _local13 = _local10[_local7].line; } _local7++; } if (_local13 == 0) { var _local11 = new Object(); _local11.x = _local5.x; _local11.y = _local5.y; var _local8 = new Object(); _local8.x1 = _local5.x - _local17; _local8.y1 = _local5.y - _local18; _local8.x2 = _local5.x; _local8.y2 = _local5.y; _global.countLine(_local8); _local11.line = _local8; _local10.push(_local11); _local24 = _local11; _local13 = _local8; var _local6 = _global.crossLineAndCircle(_local13, _local31); if (_local6.actualCrossed) { var _local30 = _local6.x - x; var _local29 = _local6.y - y; if (((_local17 * _local30) + (_local18 * _local29)) > 0) { _local6.type = "circline"; _local6.line = _local13; _local6.tile = _local15; _local6.crossPoint = new Object(); _local6.crossPoint.x = _local5.x; _local6.crossPoint.y = _local5.y; _local27.push(_local6); if (_local15.isPortal) { portalsCrossed.push(_local15); } } } } _local22++; } _local23++; } if (_local27.length > 0) { if (_local54 < maxIterations) { needToRecount = true; } _local27.sortOn("d1", Array.NUMERIC); var _local4 = _local27[0]; if (!_global.isChild(portalsCrossed, portalIgnore)) { portalIgnore = undefined; } if (_local4.type == "lineline") { var _local56 = _local4.x - (Math.round((100 * ww) * _local4.line.nx) / 100); var _local55 = _local4.y - (Math.round((100 * ww) * _local4.line.nx) / 100); var _local43 = _local4.tile.getAngleRatio(_local4.line, _local4.do1, _local4.do2); } else if (_local4.type == "circline") { var _local33 = new Object(); _local33.x1 = x; _local33.y1 = y; _local33.x2 = x + _local17; _local33.y2 = y + _local18; _global.countLine(_local33); var _local21 = new Object(); _local21.x1 = x + _local4.dx1; _local21.y1 = y + _local4.dy1; _local21.x2 = _local4.x + _local4.dx1; _local21.y2 = _local4.y + _local4.dy1; _global.countLine(_local21); var _local32 = new Object(); _local32.x1 = _local21.x1 - (50 * _local21.nx); _local32.y1 = _local21.y1 - (50 * _local21.ny); _local32.x2 = _local21.x1 + (50 * _local21.nx); _local32.y2 = _local21.y1 + (50 * _local21.ny); _global.countLine(_local32); var _local45 = _local4; _local4 = _global.crossLines(_local33, _local32); _local4.tile = _local45.tile; _local4.type = _local45.type; var _local56 = x + _local4.dx1; var _local55 = y + _local4.dy1; var _local43 = 0; } x = x + _local4.dx1; y = y + _local4.dy1; if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { needToRecount = false; if (type == "lazer") { var _local53 = 1; } if (type == "rocket") { var _local53 = 1000000 /* 0x0F4240 */; } if (type != "freeze") { _local4.tile.decreaseLive(_local53, this); } else { _local4.tile.setFire(0); _local4.tile.setIce(1); } removeFromArray(); outQueue(); removeMovieClip(); } else { if (_local4.tile._name == "caretDummy") { if (_global.player.glued) { _global.sound.play("magnet", _x); } else { _global.sound.play("paddle", _x); } } else if ((((_local4.tile.type == "rightBorder") || (_local4.tile.type == "leftBorder")) || (_local4.tile.type == "topBorder")) || ((_local4.tile.type == "bottomBorder") && ((_global.envS.debugBallDie == 1) || (!_global.gameInProcess)))) { _global.sound.play("wallhit", _x); } else if (mode == "acid") { _global.sound.play("acid", _x); } else if (_local4.tile.live > 100) { _global.sound.play("brick02", _x); } else { _global.sound.play("brick01", _x); } if (((_local4.tile.type == "bottomBorder") && (_global.envS.debugBallDie == 0)) && (_global.gameInProcess)) { needToRecount = false; removeFromArray(); var _local40 = 0; _local23 = 0; while (_local23 < _global.ballz.length) { if (((_global.ballz[_local23].type != "rocket") && (_global.ballz[_local23].type != "lazer")) && (_global.ballz[_local23].type != "freeze")) { _local40++; } _local23++; } if (_local40 == 0) { _global.changePlayerLives(-1); } outQueue(); removeMovieClip(); } else { var _local44 = fullSpeed; var _local42 = 1; if (((mode == "acid") || (mode == "fire")) && (_local4.tile.type != "theWall")) { _local42 = 1000000 /* 0x0F4240 */; } var _local57 = _local4.tile.decreaseLive(_local42, this); if ((((mode == "acid") && (_local4.tile.live != -10)) && (_local4.tile.type != "theWall")) || (_local4.tile.isPortal)) { _local17 = _local4.dx2; _local18 = _local4.dy2; } else { var _local25 = _local4.new_al; if (_local43 != 0) { _local25 = (_local4.line.nal_gr + _local43) / _global.PI2; } var _local19 = _local25 * _global.PI2; while (_local19 > 180) { _local19 = _local19 - 360; } while (_local19 < -180) { _local19 = _local19 + 360; } var _local48 = Math.abs(_local19); if ((((_local4.tile.type == "rightBorder") || (_local4.tile.type == "leftBorder")) && (_local4.y <= _global.envS.horizAngleCorrY)) && ((_local48 < _global.envS.horizAngleMin) || (_local48 > (180 - _global.envS.horizAngleMin)))) { if ((_local19 < -90) || (_local19 > 90)) { var _local49 = 180 - (((_local19 > 0) ? 1 : -1) * _global.envS.horizAngleMin); } if ((_local19 > -90) && (_local19 < 90)) { var _local49 = ((_local19 > 0) ? 1 : -1) * _global.envS.horizAngleMin; } _local25 = _local49 / _global.PI2; } xspeed = _global.roundNums(_local44 * Math.cos(_local25), 4); yspeed = _global.roundNums(_local44 * Math.sin(_local25), 4); var _local35 = Math.sqrt((_local17 * _local17) + (_local18 * _local18)); _local35 = _local35 - _local4.d1; if ((_local4.tile._name == "caretDummy") && (_global.player.glued)) { _local35 = 0; } _local17 = _global.roundNums(_local35 * Math.cos(_local25), 4); _local18 = _global.roundNums(_local35 * Math.sin(_local25), 4); } if (_local4.tile.isPortal && (portalIgnore != _local4.tile)) { _global.sound.play("portal", _x); var _local52 = _local4.tile.portalExit[Math.floor(_local4.tile.portalExit.length * Math.random())]; var _local34 = _global.portalz[_local52]; portalIgnore = _local34; x = x + (_local34._x - _local4.tile._x); newx = newx + (_local34._x - _local4.tile._x); y = y + (_local34._y - _local4.tile._y); newy = newy + (_local34._y - _local4.tile._y); } newx = x + _local17; newy = y + _local18; if (_local4.tile.isIce && (mode == "fire")) { setMode("none"); } if (_local4.tile.isFire) { setMode("fire"); } if (_local4.tile.isBallBlock) { if (((type != "rocket") && (type != "lazer")) && (type != "freeze")) { needToRecount = false; var _local47 = _local25 - (_global.envS.bonus_ballFromTile_ang / (2 * _global.PI2)); var _local46 = _local25 + (_global.envS.bonus_ballFromTile_ang / (2 * _global.PI2)); xspeed = _global.roundNums(speedDefault * Math.cos(_local47), 4); yspeed = _global.roundNums(speedDefault * Math.sin(_local47), 4); var _local51 = _global.roundNums(speedDefault * Math.cos(_local46), 4); var _local50 = _global.roundNums(speedDefault * Math.sin(_local46), 4); var _local28 = _root.all.blz.attachMovie("ballContainer", "ballMC" + _root.all.blz.getNextHighestDepth(), _root.all.blz.getNextHighestDepth()); _local28.initObj("simpleBall", _local51, _local50); _local28.moveTo(_x, _y); _local28.image._xscale = (_local28.image._yscale = image._xscale); _local28.setMode(mode, modeChangedTime, modeChangedMaxTime); _local28.changeSpeed(speedRatio, speedChangedTime, speedChangedMaxTime); _local28.changeDim(dimRatio, dimChangedTime, dimChangedMaxTime); _local28.inQueue(50); _global.ballz.push(_local28); } } if (_local4.tile._name == "caretDummy") { _global.player.img._x = _global.player.moveAmount * Math.cos(_local25 + Math.PI); _global.player.img._y = _global.player.moveAmount * Math.sin(_local25 + Math.PI); if (_global.player.glued) { _global.player.makeFireGlued(); _global.player.makeGlued(this); needToRecount = false; } } _local4.tile.checkMoveNeeded(); } } } } while (needToRecount); } function removeFromArray() { var _local3 = 0; while (_local3 < _global.ballz.length) { if (_global.ballz[_local3] == this) { _global.ballz.splice(_local3, 1); break; } _local3++; } } function changeDimenstionsStep() { if (((type == "rocket") || (type == "lazer")) || (type == "freeze")) { return(undefined); } var _local14 = image._xscale - (100 * dimRatio); if (Math.abs(_local14) < 1) { return(undefined); } var _local13 = image._xscale + (((100 * dimRatio) - image._xscale) / _global.envS.dimChangeFactor); var _local10 = _local13; if (_local10 < image._xscale) { _local10 = image._xscale; } var _local11 = Math.round((ww_start * _local10) / 100); var _local12 = Math.round((hh_start * _local10) / 100); var _local9 = Math.min(x, newx) - _local11; var _local7 = Math.max(x, newx) + _local11; var _local8 = Math.min(y, newy) - _local12; var _local6 = Math.max(y, newy) + _local12; var _local5 = _global.allTiles; var _local4 = 0; while (_local4 < _local5.length) { var _local3 = _local5[_local4]; if (!_local3.hit) { } else if ((_local9 < _local3.bb_arr.max.x) && (_local7 > _local3.bb_arr.min.x)) { if ((_local8 < _local3.bb_arr.max.y) && (_local6 > _local3.bb_arr.min.y)) { return(undefined); } } _local4++; } image._yscale = (image._xscale = _local13); _local14 = image._xscale - (100 * dimRatio); if (Math.abs(_local14) < 1) { image._xscale = (image._yscale = 100 * dimRatio); } ww = Math.round((ww_start * image._xscale) / 100); hh = Math.round((hh_start * image._xscale) / 100); } var xspeed = 0; var yspeed = 0; var fullSpeed = 0; var glued = false; var modeChanged = false; var modeChangedTime = 0; var modeChangedMaxTime = 0; var dimChanged = false; var dimDefault = 0; var dimRatio = 1; var dimChangedTime = 0; var dimChangedMaxTime = 0; var speedChanged = false; var speedDefault = 0; var speedRatio = 1; var speedChangedTime = 0; var speedChangedMaxTime = 0; }
Symbol 516 MovieClip [__Packages.bonus] Frame 0
class bonus extends MovieClip { var w, _width, h, _height, init, _alpha, type, speedy, _y, removeMovieClip, hitTest, _x; function bonus () { super(); _global.bonusez.push(this); w = _width / 2; h = _height / 2; init = false; _alpha = 0; trace("create bonus: " + this); } function initObj(t, s) { s = parseFloat(s); if (_global.noSet(s)) { return(undefined); } type = t; speedy = s; init = true; } function onEnterFrame() { if (_global.gameInMoving) { if (init) { if (_alpha < 100) { _alpha = _alpha + 10; if (_alpha > 100) { _alpha = 100; } } _y = _y + speedy; if (_y > 450) { removeFromArray(); removeMovieClip(); } } if (_global.gameInProcess) { if (hitTest(_global.player)) { if (type != "bomb") { _global.sound.play("bonpick", _x); } if (type == "triple") { var _local4 = _global.ballz[Math.floor(Math.random() * _global.ballz.length)]; if (((_local4.type == "rocket") || (_local4.type == "lazer")) || (_local4.type == "freeze")) { } var _local8 = Math.atan2(_local4.yspeed, _local4.xspeed); var _local6 = _root.all.blz.attachMovie("ballContainer", "ballMC" + _root.all.blz.getNextHighestDepth(), _root.all.blz.getNextHighestDepth()); var _local7 = _local8 - (_global.envS.bonus_ball_ang / _global.PI2); _local6.initObj("simpleBall", _local4.speedDefault * Math.cos(_local7), _local4.speedDefault * Math.sin(_local7)); _local6.moveTo(_local4._x, _local4._y); _local6.setMode(_local4.mode, _local4.modeChangedTime, _local4.modeChangedMaxTime); _local6.changeSpeed(_local4.speedRatio, _local4.speedChangedTime, _local4.speedChangedMaxTime); _local6.changeDim(_local4.dimRatio, _local4.dimChangedTime, _local4.dimChangedMaxTime); _local6.image._xscale = (_local6.image._yscale = _local4.image._xscale); _local6.inQueue(50); _global.ballz.push(_local6); _local6 = _root.all.blz.attachMovie("ballContainer", "ballMC" + _root.all.blz.getNextHighestDepth(), _root.all.blz.getNextHighestDepth()); _local7 = _local8 + (_global.envS.bonus_ball_ang / _global.PI2); _local6.initObj("simpleBall", _local4.speedDefault * Math.cos(_local7), _local4.speedDefault * Math.sin(_local7)); _local6.moveTo(_local4._x, _local4._y); _local6.setMode(_local4.mode, _local4.modeChangedTime, _local4.modeChangedMaxTime); _local6.changeSpeed(_local4.speedRatio, _local4.speedChangedTime, _local4.speedChangedMaxTime); _local6.changeDim(_local4.dimRatio, _local4.dimChangedTime, _local4.dimChangedMaxTime); _local6.image._xscale = (_local6.image._yscale = _local4.image._xscale); _local6.inQueue(50); _global.ballz.push(_local6); } else if (type == "live") { _global.changePlayerLives(1); } else if (((type == "lazer") || (type == "rocket")) || (type == "freeze")) { _global.player.setMode(type, _global.envS[type + "Count"]); } else if ((type == "acid") || (type == "fire")) { var _local5 = 0; while (_local5 < _global.ballz.length) { _global.ballz[_local5].setMode(type); _local5++; } } else if (type == "glue") { _global.player.glued = true; _global.player.gluedChangedTime = 0; _global.player.gluedChangedMaxTime = _global.envS.glueTime; _global.player.img.glue._visible = true; } else if (type == "slowball") { var _local5 = 0; while (_local5 < _global.ballz.length) { _global.ballz[_local5].changeSpeed(_global.envS.speedChangeDown); _local5++; } } else if (type == "fastball") { var _local5 = 0; while (_local5 < _global.ballz.length) { _global.ballz[_local5].changeSpeed(_global.envS.speedChangeUp); _local5++; } } else if (type == "bigball") { var _local5 = 0; while (_local5 < _global.ballz.length) { _global.ballz[_local5].changeDim(_global.envS.dimChangeUp); _local5++; } } else if (type == "littleball") { var _local5 = 0; while (_local5 < _global.ballz.length) { _global.ballz[_local5].changeDim(_global.envS.dimChangeDown); _local5++; } } else if (type == "widecaret") { _global.player.rchangeDim(_global.player_caret.maxWidth); } else if (type == "narrowcaret") { _global.player.rchangeDim(_global.player_caret.minWidth); } else if (type == "bomb") { _global.changePlayerLives(-1, true); } else if (type == "wall") { if (!_global.noSet(_global.wallTile)) { _global.wallTile.decreaseLive(-_global.envS.wallBonusLives); } else { var _local9 = _root.all.top1.getNextHighestDepth(); _global.wallTile = _root.all.top1.attachMovie("tileMC", "tt" + _local9, _local9); _global.wallTile.makeTile("theWall"); _global.allTiles.unshift(_global.wallTile); _global.wallTile.setInGame(0); _global.wallTile.setLives(_global.envS.wallBonusLives); _global.wallTile._x = 0; _global.wallTile._y = _global.borders.bottom - 10; _global.wallTile.initObj(); } } else if (type == "score") { _global.changeLevelScore(_global.envS.bonusScore); } removeFromArray(); removeMovieClip(); } } } } function removeFromArray() { var _local3 = 0; while (_local3 < _global.bonusez.length) { if (_global.bonusez[_local3] == this) { _global.bonusez.splice(_local3, 1); return(undefined); } _local3++; } } }
Symbol 517 MovieClip [__Packages.queue] Frame 0
class queue extends MovieClip { var actions, newActions, forDelActions; function queue () { super(); actions = new Array(); newActions = new Array(); forDelActions = new Array(); _global.queue = this; } function addFunc(func, obj, priority) { ticket++; if (_global.noSet(priority)) { priority = 50; } newActions.push({func:func, obj:obj, pr:priority, ticket:ticket}); sync = false; return(ticket); } function remove(t) { sync = false; forDelActions.push(t); var _local2 = 0; while (_local2 < newActions.length) { if (newActions[_local2].ticket == t) { newActions.splice(_local2, 1); return(true); } _local2++; } return(true); } function clear() { delete actions; delete newActions; actions = new Array(); newActions = new Array(); ticket = 0; sync = true; } function onEnterFrame() { if (!sync) { while (newActions.length > 0) { actions.push(newActions.pop()); } actions.sortOn("pr", Array.NUMERIC); var _local3 = 0; while (_local3 < forDelActions.length) { var _local4 = forDelActions[_local3]; var _local2 = 0; while (_local2 < actions.length) { if (actions[_local2].ticket == _local4) { actions.splice(_local2, 1); forDelActions.splice(_local3, 1); _local3--; break; } _local2++; } _local3++; } if (forDelActions.length != 0) { trace((("*****************NOT removed, length " + forDelActions.length) + ", queue length=") + actions.length); } sync = true; } var _local2 = 0; while (_local2 < actions.length) { actions[_local2].done = false; _local2++; } var _local5 = 0; while (_local5 != actions.length) { _local2 = 0; while (_local2 < actions.length) { if (!actions[_local2].done) { _local5++; actions[_local2].func.call(actions[_local2].obj); } _local2++; } } } var ticket = 0; var sync = true; }
Symbol 518 MovieClip [__Packages.soundCollector] Frame 0
class soundCollector extends MovieClip { var col, getNextHighestDepth, createEmptyMovieClip; function soundCollector () { super(); col = new Array(); var _local8 = 0; while (_local8 < arrayLength) { var _local5 = getNextHighestDepth(); var _local6 = createEmptyMovieClip("mc_" + _local5, _local5); var _local4 = new Sound(_local6); _local4.onSoundComplete = scomplete; var _local7 = {mc:_local6, snd:_local4, free:true, cont:false, pri:false}; _local4.link = _local7; col.push(_local7); _local8++; } _global.sound = this; } function set width(w) { if (w >= 0) { __width = w; } //return(width); } function get width() { return(__width); } function set volume(v) { if (v >= 0) { __volume = v; } //return(volume); } function get volume() { return(__volume); } function set enable(e) { __enable = e; if (!__enable) { var _local2 = 0; while (_local2 < arrayLength) { col[_local2].snd.stop(); _local2++; } } //return(enable); } function get enable() { return(__enable); } function play(linkage, xpos, priority, num, volume) { if (!__enable) { return(undefined); } if (_global.noSet(priority)) { priority = false; } if (_global.noSet(num)) { num = 1; } if (num == -1) { num = 1000000000 /* 0x3B9ACA00 */; } var _local12 = false; var _local6 = -1; var _local5 = 0; var _local7 = -1; var _local3 = 0; while (_local3 < arrayLength) { if (col[_local3].free || (_global.noSet(col[_local3].snd.position))) { col[_local3].free = true; _local6 = _local3; break; } if (!col[_local3].pri) { var _local4 = col[_local3].snd.position / col[_local3].snd.duration; if (_local4 > _local5) { _local5 = _local4; _local7 = _local3; } } _local3++; } if (_local6 == -1) { if (priority) { if (_global.envS.debug && (_global.envS.soundDebug)) { _global.debug(((((("Sound collector: all slots busy, using slot " + _local7) + " (") + col[_local7].linkage) + ": ") + (col[_local7].snd.position / col[_local7].snd.duration)) + ")"); } _local6 = _local7; col[_local6].snd.stop(); } else if (_global.envS.debug && (_global.envS.soundDebug)) { _global.debug("Sound collector: all slots busy, this sound skipping because of their low priority"); } } if (_local6 != -1) { var _local8 = col[_local6]; _local8.snd.attachSound(linkage); _local8.snd.setVolume(this.volume); _local8.target = undefined; if (!_global.noSet(xpos)) { if (typeof(xpos) == "number") { _local8.snd.setPan(calcPan(xpos)); } if (typeof(xpos) == "movieclip") { _local8.target = xpos; } } else { _local8.snd.setPan(0); } _local8.snd.start(0, num); _local8.free = false; _local8.linkage = linkage; _local8.pri = priority; } } function stop(linkage) { var _local2 = 0; while (_local2 < arrayLength) { if (col[_local2].linkage == linkage) { col[_local2].snd.stop(); col[_local2].free = true; } _local2++; } } function scomplete() { var _local2 = this; _local2.link.free = true; } function oEF() { var _local3 = 0; while (_local3 < arrayLength) { if (!_global.noSet(col[_local3].target)) { col[_local3].snd.setPan(calcPan(col[_local3].target._x)); } _local3++; } } function calcPan(xpos) { return((((100 * xpos) / __width) * 2) - 100); } var arrayLength = 8; var __volume = 100; var __width = 100; var __enable = true; }
Symbol 15 MovieClip Frame 40
gotoAndPlay (1);
Symbol 19 Button
on (press) { openSite(); }
Symbol 43 MovieClip [queue] Frame 1
#initclip 19 Object.registerClass("queue", queue); #endinitclip
Symbol 63 MovieClip [caretMC] Frame 1
#initclip 8 Object.registerClass("caretMC", caret); #endinitclip
Symbol 64 MovieClip [tileMC] Frame 1
#initclip 9 Object.registerClass("tileMC", tile); #endinitclip
Symbol 65 MovieClip [ballContainer] Frame 1
#initclip 10 Object.registerClass("ballContainer", ball); #endinitclip
Symbol 135 MovieClip [simpleBall] Frame 1
stop();
Symbol 135 MovieClip [simpleBall] Frame 2
stop();
Symbol 135 MovieClip [simpleBall] Frame 3
stop();
Symbol 141 MovieClip [scin] Frame 16
removeMovieClip(this);
Symbol 145 MovieClip [bonus_live] Frame 1
#initclip 11 Object.registerClass("bonus_live", bonus); #endinitclip
Symbol 149 MovieClip [bonus_lazer] Frame 1
#initclip 12 Object.registerClass("bonus_lazer", bonus); #endinitclip
Symbol 157 MovieClip [bonus_glue] Frame 1
#initclip 13 Object.registerClass("bonus_glue", bonus); #endinitclip
Symbol 168 MovieClip [explode] Frame 15
stop(); this.removeMovieClip();
Symbol 172 MovieClip [bonus_score] Frame 1
#initclip 14 Object.registerClass("bonus_score", bonus); #endinitclip
Symbol 176 MovieClip [bonus_wall] Frame 1
#initclip 15 Object.registerClass("bonus_wall", bonus); #endinitclip
Symbol 183 MovieClip Frame 1
stop();
Symbol 344 MovieClip [bonus_fire] Frame 1
#initclip 16 Object.registerClass("bonus_fire", bonus); #endinitclip
Symbol 348 MovieClip [bonus_widecaret] Frame 1
#initclip 17 Object.registerClass("bonus_widecaret", bonus); #endinitclip
Symbol 352 MovieClip [bonus_triple] Frame 1
#initclip 18 Object.registerClass("bonus_triple", bonus); #endinitclip
Symbol 405 MovieClip [#soundz] Frame 1
#initclip 20 Object.registerClass("#soundz", soundCollector); #endinitclip
Symbol 412 MovieClip Frame 240
gotoAndPlay (1);
Symbol 416 MovieClip Frame 480
gotoAndPlay (1);
Symbol 426 Button
on (release) { _root.noNewGame = false; _global.sound.play("menu"); _root.gotoAndStop("help"); }
Symbol 431 Button
on (release) { _root.noNewGame = true; _global.sound.play("menu"); _root.gotoAndStop("help"); }
Symbol 436 Button
on (press) { _global.sound.play("menu"); openSite(); }
Symbol 440 Button
on (press) { this._parent.soundOff(); this.gotoAndStop(2); }
Symbol 442 Button
on (press) { this._parent.soundOn(); this.gotoAndStop(1); }
Symbol 443 MovieClip Frame 1
this.stop(); _root.soundStarter.gotoAndPlay("start"); sound.enable = true;
Symbol 443 MovieClip Frame 2
this.stop(); _root.soundStarter.gotoAndPlay("stop"); sound.enable = false;
Symbol 445 MovieClip Frame 1
_visible = false; stop();
Symbol 445 MovieClip Frame 3
if (!sound.enable) { gotoAndStop (1); }
Symbol 445 MovieClip Frame 7
gotoAndStop (1);
Symbol 445 MovieClip Frame 12
gotoAndStop (1);
Symbol 453 Button
on (release) { _global.sound.play("menu"); _root.gotoAndStop("game"); }
Symbol 458 Button
on (release) { _global.sound.play("menu"); gotoAndStop ("menu"); }
Symbol 470 MovieClip Frame 240
gotoAndPlay (1);
Symbol 489 Button
on (press) { _visible = false; stopAllEngines(); killOldLevel(); _root.globalStart(); gotoAndStop (1); }
Symbol 493 MovieClip Frame 1
stop();
Symbol 493 MovieClip Frame 6
stop();
Symbol 494 Button
on (press) { _visible = false; stopAllEngines(); killOldLevel(); _root.gotoAndStop("menu"); gotoAndStop (1); }
Symbol 498 MovieClip Frame 1
stop();
Symbol 498 MovieClip Frame 6
stop();
Symbol 501 MovieClip Frame 1
stop(); bd._visible = false;
Symbol 501 MovieClip Frame 50
_visible = false; _global.dieAnimPause = false; _global.gameInProcess = true; var i = 0; while (i < _global.bonusez.length) { _global.bonusez[i].removeMovieClip(); i++; } makeAutoball();
Symbol 504 Button
on (press) { keyLogger(true); }
Symbol 505 Button
on (press) { _visible = false; stopAllEngines(); killOldLevel(); _root.gotoAndStop("menu"); gotoAndStop (1); }
Symbol 507 Button
on (press) { _visible = false; stopAllEngines(); killOldLevel(); _root.gotoAndStop("menu"); gotoAndStop (1); }
Symbol 511 MovieClip Frame 1
stop();
Symbol 511 MovieClip Frame 6
stop();

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:3
Symbol 3 MovieClipUses:2Used by:10
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:6 61 64 65
Symbol 6 MovieClipUses:5Used by:10 42 43 183 405 474
Symbol 7 BitmapUsed by:8
Symbol 8 GraphicUses:7Used by:9
Symbol 9 MovieClipUses:8Used by:10
Symbol 10 MovieClip [block_stone]Uses:3 6 9Used by:Timeline
Symbol 11 GraphicUsed by:Timeline
Symbol 512 MovieClip [__Packages.queuedObject]
Symbol 513 MovieClip [__Packages.tile]
Symbol 514 MovieClip [__Packages.caret]
Symbol 515 MovieClip [__Packages.ball]
Symbol 516 MovieClip [__Packages.bonus]
Symbol 517 MovieClip [__Packages.queue]
Symbol 518 MovieClip [__Packages.soundCollector]
Symbol 12 GraphicUsed by:17 19 62
Symbol 13 GraphicUsed by:17
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:17
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:12 13 15 16Used by:Timeline
Symbol 18 GraphicUsed by:19
Symbol 19 ButtonUses:18 12Used by:Timeline
Symbol 20 FontUsed by:21
Symbol 21 EditableTextUses:20Used by:25
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:25
Symbol 25 MovieClipUses:21 22 24Used by:Timeline
Symbol 26 BitmapUsed by:27
Symbol 27 GraphicUses:26Used by:28
Symbol 28 MovieClipUses:27Used by:Timeline
Symbol 29 Sound [menu]Used by:42
Symbol 30 Sound [eexplode]Used by:42
Symbol 31 SoundUsed by:42 445
Symbol 32 Sound [byeball]Used by:42
Symbol 33 Sound [bonpick]Used by:42
Symbol 34 Sound [magnet]Used by:42
Symbol 35 Sound [paddle]Used by:42
Symbol 36 Sound [brick01]Used by:42
Symbol 37 Sound [brick02]Used by:42
Symbol 38 Sound [LevelDone]Used by:42
Symbol 39 Sound [GameOver]Used by:42
Symbol 40 Sound [laser]Used by:42
Symbol 41 Sound [wallhit]Used by:42
Symbol 42 MovieClipUses:6 29 30 31 32 33 34 35 36 37 38 39 40 41Used by:Timeline
Symbol 43 MovieClip [queue]Uses:6Used by:Timeline
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:46
Symbol 46 MovieClipUses:45Used by:47
Symbol 47 MovieClipUses:46Used by:48 62
Symbol 48 MovieClipUses:47Used by:62
Symbol 49 BitmapUsed by:50
Symbol 50 GraphicUses:49Used by:51
Symbol 51 MovieClipUses:50Used by:62
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:54
Symbol 54 MovieClipUses:53Used by:62
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:61
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:60
Symbol 60 MovieClipUses:59Used by:61
Symbol 61 MovieClipUses:5 57 60Used by:62
Symbol 62 MovieClipUses:12 48 47 51 54 61Used by:63
Symbol 63 MovieClip [caretMC]Uses:62Used by:Timeline
Symbol 64 MovieClip [tileMC]Uses:5Used by:Timeline
Symbol 65 MovieClip [ballContainer]Uses:5Used by:Timeline
Symbol 66 GraphicUsed by:99 133
Symbol 67 BitmapUsed by:68
Symbol 68 GraphicUses:67Used by:99
Symbol 69 BitmapUsed by:70
Symbol 70 GraphicUses:69Used by:99
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:99
Symbol 73 BitmapUsed by:74
Symbol 74 GraphicUses:73Used by:99
Symbol 75 BitmapUsed by:76
Symbol 76 GraphicUses:75Used by:99
Symbol 77 BitmapUsed by:78
Symbol 78 GraphicUses:77Used by:99
Symbol 79 BitmapUsed by:80
Symbol 80 GraphicUses:79Used by:99
Symbol 81 BitmapUsed by:82
Symbol 82 GraphicUses:81Used by:99
Symbol 83 BitmapUsed by:84
Symbol 84 GraphicUses:83Used by:99
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:99
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:99
Symbol 89 BitmapUsed by:90
Symbol 90 GraphicUses:89Used by:99
Symbol 91 BitmapUsed by:92
Symbol 92 GraphicUses:91Used by:99
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:99
Symbol 95 BitmapUsed by:96
Symbol 96 GraphicUses:95Used by:99
Symbol 97 BitmapUsed by:98
Symbol 98 GraphicUses:97Used by:99
Symbol 99 MovieClipUses:66 68 70 72 74 76 78 80 82 84 86 88 90 92 94 96 98Used by:100
Symbol 100 MovieClipUses:99Used by:135
Symbol 101 BitmapUsed by:102
Symbol 102 GraphicUses:101Used by:133
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:133
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:133
Symbol 107 BitmapUsed by:108
Symbol 108 GraphicUses:107Used by:133
Symbol 109 BitmapUsed by:110
Symbol 110 GraphicUses:109Used by:133
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:133
Symbol 113 BitmapUsed by:114
Symbol 114 GraphicUses:113Used by:133
Symbol 115 BitmapUsed by:116
Symbol 116 GraphicUses:115Used by:133
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:133
Symbol 119 BitmapUsed by:120
Symbol 120 GraphicUses:119Used by:133
Symbol 121 BitmapUsed by:122
Symbol 122 GraphicUses:121Used by:133
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:133
Symbol 125 BitmapUsed by:126
Symbol 126 GraphicUses:125Used by:133
Symbol 127 BitmapUsed by:128
Symbol 128 GraphicUses:127Used by:133
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:133
Symbol 131 BitmapUsed by:132
Symbol 132 GraphicUses:131Used by:133
Symbol 133 MovieClipUses:66 102 104 106 108 110 112 114 116 118 120 122 124 126 128 130 132Used by:134
Symbol 134 MovieClipUses:133Used by:135
Symbol 135 MovieClip [simpleBall]Uses:100 134Used by:Timeline
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClip [circle]Uses:136Used by:Timeline
Symbol 138 ShapeTweeningUsed by:141
Symbol 139 ShapeTweeningUsed by:141
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClip [scin]Uses:138 139 140Used by:Timeline
Symbol 142 BitmapUsed by:143
Symbol 143 GraphicUses:142Used by:144
Symbol 144 MovieClipUses:143Used by:145  Timeline
Symbol 145 MovieClip [bonus_live]Uses:144Used by:Timeline
Symbol 146 BitmapUsed by:147
Symbol 147 GraphicUses:146Used by:148
Symbol 148 MovieClipUses:147Used by:149  Timeline
Symbol 149 MovieClip [bonus_lazer]Uses:148Used by:Timeline
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:152
Symbol 152 MovieClipUses:151Used by:153
Symbol 153 MovieClip [lazer]Uses:152Used by:Timeline
Symbol 154 BitmapUsed by:155
Symbol 155 GraphicUses:154Used by:156
Symbol 156 MovieClipUses:155Used by:157  Timeline
Symbol 157 MovieClip [bonus_glue]Uses:156Used by:Timeline
Symbol 158 ShapeTweeningUsed by:168
Symbol 159 ShapeTweeningUsed by:168
Symbol 160 ShapeTweeningUsed by:168
Symbol 161 ShapeTweeningUsed by:168
Symbol 162 ShapeTweeningUsed by:168
Symbol 163 ShapeTweeningUsed by:168
Symbol 164 GraphicUsed by:168
Symbol 165 ShapeTweeningUsed by:168
Symbol 166 GraphicUsed by:168
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClip [explode]Uses:158 159 160 161 162 163 164 165 166 167Used by:Timeline
Symbol 169 BitmapUsed by:170
Symbol 170 GraphicUses:169Used by:171
Symbol 171 MovieClipUses:170Used by:172  Timeline
Symbol 172 MovieClip [bonus_score]Uses:171Used by:Timeline
Symbol 173 BitmapUsed by:174
Symbol 174 GraphicUses:173Used by:175
Symbol 175 MovieClipUses:174Used by:176  Timeline
Symbol 176 MovieClip [bonus_wall]Uses:175Used by:Timeline
Symbol 177 BitmapUsed by:178 357
Symbol 178 GraphicUses:177Used by:179
Symbol 179 MovieClipUses:178Used by:184 403
Symbol 180 FontUsed by:181 182 478 482 499
Symbol 181 TextUses:180Used by:183
Symbol 182 TextUses:180Used by:183
Symbol 183 MovieClipUses:6 181 182Used by:184
Symbol 184 MovieClip [theWall]Uses:179 183Used by:Timeline
Symbol 185 BitmapUsed by:186
Symbol 186 GraphicUses:185Used by:187
Symbol 187 MovieClipUses:186Used by:188 404
Symbol 188 MovieClip [column_up]Uses:187Used by:Timeline
Symbol 189 BitmapUsed by:190
Symbol 190 GraphicUses:189Used by:191
Symbol 191 MovieClipUses:190Used by:192
Symbol 192 MovieClip [column_down]Uses:191Used by:Timeline
Symbol 193 BitmapUsed by:194
Symbol 194 GraphicUses:193Used by:195
Symbol 195 MovieClipUses:194Used by:196
Symbol 196 MovieClip [column_mid]Uses:195Used by:Timeline
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:197Used by:199
Symbol 199 MovieClipUses:198Used by:200
Symbol 200 MovieClip [block_grass]Uses:199Used by:Timeline
Symbol 201 BitmapUsed by:202
Symbol 202 GraphicUses:201Used by:203
Symbol 203 MovieClipUses:202Used by:204
Symbol 204 MovieClip [block_sand]Uses:203Used by:Timeline
Symbol 205 BitmapUsed by:206
Symbol 206 GraphicUses:205Used by:207
Symbol 207 MovieClipUses:206Used by:208
Symbol 208 MovieClip [block_rock]Uses:207Used by:Timeline
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:211
Symbol 211 MovieClipUses:210Used by:212 402
Symbol 212 MovieClip [block_wall]Uses:211Used by:Timeline
Symbol 213 BitmapUsed by:214
Symbol 214 GraphicUses:213Used by:215
Symbol 215 MovieClipUses:214Used by:216
Symbol 216 MovieClip [grass_40x40]Uses:215Used by:Timeline
Symbol 217 BitmapUsed by:218
Symbol 218 GraphicUses:217Used by:219
Symbol 219 MovieClipUses:218Used by:220
Symbol 220 MovieClip [sand_40x40]Uses:219Used by:Timeline
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:223
Symbol 223 MovieClipUses:222Used by:224
Symbol 224 MovieClip [rock_40x40]Uses:223Used by:Timeline
Symbol 225 BitmapUsed by:226
Symbol 226 GraphicUses:225Used by:227
Symbol 227 MovieClipUses:226Used by:228
Symbol 228 MovieClip [stone_40x40]Uses:227Used by:Timeline
Symbol 229 BitmapUsed by:230
Symbol 230 GraphicUses:229Used by:231
Symbol 231 MovieClipUses:230Used by:232
Symbol 232 MovieClip [grass_trg1]Uses:231Used by:Timeline
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:235
Symbol 235 MovieClipUses:234Used by:236
Symbol 236 MovieClip [grass_trg2]Uses:235Used by:Timeline
Symbol 237 BitmapUsed by:238
Symbol 238 GraphicUses:237Used by:239
Symbol 239 MovieClipUses:238Used by:240
Symbol 240 MovieClip [grass_trg3]Uses:239Used by:Timeline
Symbol 241 BitmapUsed by:242
Symbol 242 GraphicUses:241Used by:243
Symbol 243 MovieClipUses:242Used by:244
Symbol 244 MovieClip [grass_trg4]Uses:243Used by:Timeline
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:247
Symbol 247 MovieClipUses:246Used by:248
Symbol 248 MovieClip [rock_trg1]Uses:247Used by:Timeline
Symbol 249 BitmapUsed by:250
Symbol 250 GraphicUses:249Used by:251
Symbol 251 MovieClipUses:250Used by:252
Symbol 252 MovieClip [rock_trg2]Uses:251Used by:Timeline
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:255
Symbol 255 MovieClipUses:254Used by:256
Symbol 256 MovieClip [rock_trg3]Uses:255Used by:Timeline
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:259
Symbol 259 MovieClipUses:258Used by:260
Symbol 260 MovieClip [rock_trg4]Uses:259Used by:Timeline
Symbol 261 BitmapUsed by:262
Symbol 262 GraphicUses:261Used by:263
Symbol 263 MovieClipUses:262Used by:264
Symbol 264 MovieClip [stone_trg1]Uses:263Used by:Timeline
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:267
Symbol 267 MovieClipUses:266Used by:268
Symbol 268 MovieClip [stone_trg2]Uses:267Used by:Timeline
Symbol 269 BitmapUsed by:270
Symbol 270 GraphicUses:269Used by:271
Symbol 271 MovieClipUses:270Used by:272
Symbol 272 MovieClip [stone_trg3]Uses:271Used by:Timeline
Symbol 273 BitmapUsed by:274
Symbol 274 GraphicUses:273Used by:275
Symbol 275 MovieClipUses:274Used by:276
Symbol 276 MovieClip [stone_trg4]Uses:275Used by:Timeline
Symbol 277 BitmapUsed by:278
Symbol 278 GraphicUses:277Used by:279
Symbol 279 MovieClipUses:278Used by:280
Symbol 280 MovieClip [wall_trg1]Uses:279Used by:Timeline
Symbol 281 BitmapUsed by:282
Symbol 282 GraphicUses:281Used by:283
Symbol 283 MovieClipUses:282Used by:284
Symbol 284 MovieClip [wall_trg2]Uses:283Used by:Timeline
Symbol 285 BitmapUsed by:286
Symbol 286 GraphicUses:285Used by:287
Symbol 287 MovieClipUses:286Used by:288
Symbol 288 MovieClip [wall_trg3]Uses:287Used by:Timeline
Symbol 289 BitmapUsed by:290
Symbol 290 GraphicUses:289Used by:291
Symbol 291 MovieClipUses:290Used by:292
Symbol 292 MovieClip [wall_trg4]Uses:291Used by:Timeline
Symbol 293 BitmapUsed by:294
Symbol 294 GraphicUses:293Used by:295
Symbol 295 MovieClipUses:294Used by:296
Symbol 296 MovieClip [wall_arka1]Uses:295Used by:Timeline
Symbol 297 BitmapUsed by:298
Symbol 298 GraphicUses:297Used by:299
Symbol 299 MovieClipUses:298Used by:300
Symbol 300 MovieClip [wall_arka2]Uses:299Used by:Timeline
Symbol 301 BitmapUsed by:302
Symbol 302 GraphicUses:301Used by:303
Symbol 303 MovieClipUses:302Used by:304
Symbol 304 MovieClip [sand_trg3]Uses:303Used by:Timeline
Symbol 305 BitmapUsed by:306
Symbol 306 GraphicUses:305Used by:307
Symbol 307 MovieClipUses:306Used by:308
Symbol 308 MovieClip [sand_trg4]Uses:307Used by:Timeline
Symbol 309 BitmapUsed by:310
Symbol 310 GraphicUses:309Used by:311
Symbol 311 MovieClipUses:310Used by:312 356
Symbol 312 MovieClip [head1]Uses:311Used by:Timeline
Symbol 313 BitmapUsed by:314
Symbol 314 GraphicUses:313Used by:315
Symbol 315 MovieClipUses:314Used by:316
Symbol 316 MovieClip [head2]Uses:315Used by:Timeline
Symbol 317 BitmapUsed by:318
Symbol 318 GraphicUses:317Used by:319
Symbol 319 MovieClipUses:318Used by:320
Symbol 320 MovieClip [head3]Uses:319Used by:Timeline
Symbol 321 BitmapUsed by:322
Symbol 322 GraphicUses:321Used by:323
Symbol 323 MovieClipUses:322Used by:324
Symbol 324 MovieClip [head4]Uses:323Used by:Timeline
Symbol 325 BitmapUsed by:326
Symbol 326 GraphicUses:325Used by:327
Symbol 327 MovieClipUses:326Used by:328
Symbol 328 MovieClip [chest_left]Uses:327Used by:Timeline
Symbol 329 BitmapUsed by:330
Symbol 330 GraphicUses:329Used by:331
Symbol 331 MovieClipUses:330Used by:332
Symbol 332 MovieClip [chest_mid]Uses:331Used by:Timeline
Symbol 333 BitmapUsed by:334
Symbol 334 GraphicUses:333Used by:335
Symbol 335 MovieClipUses:334Used by:336
Symbol 336 MovieClip [chest_right]Uses:335Used by:Timeline
Symbol 337 BitmapUsed by:338
Symbol 338 GraphicUses:337Used by:339
Symbol 339 MovieClipUses:338Used by:340 361
Symbol 340 MovieClip [gear]Uses:339Used by:Timeline
Symbol 341 BitmapUsed by:342
Symbol 342 GraphicUses:341Used by:343
Symbol 343 MovieClipUses:342Used by:344  Timeline
Symbol 344 MovieClip [bonus_fire]Uses:343Used by:Timeline
Symbol 345 BitmapUsed by:346
Symbol 346 GraphicUses:345Used by:347
Symbol 347 MovieClipUses:346Used by:348  Timeline
Symbol 348 MovieClip [bonus_widecaret]Uses:347Used by:Timeline
Symbol 349 BitmapUsed by:350
Symbol 350 GraphicUses:349Used by:351
Symbol 351 MovieClipUses:350Used by:352  Timeline
Symbol 352 MovieClip [bonus_triple]Uses:351Used by:Timeline
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:355
Symbol 355 MovieClipUses:354Used by:356
Symbol 356 MovieClip [head1_bomb]Uses:311 355Used by:Timeline
Symbol 357 GraphicUses:177Used by:358
Symbol 358 MovieClipUses:357Used by:359 360
Symbol 359 MovieClip [block_chain]Uses:358Used by:Timeline
Symbol 360 MovieClip [block_chain_rotated_45]Uses:358Used by:Timeline
Symbol 361 MovieClip [gear_unbreak]Uses:339Used by:Timeline
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:388 399
Symbol 364 BitmapUsed by:365
Symbol 365 GraphicUses:364Used by:388 399
Symbol 366 BitmapUsed by:367
Symbol 367 GraphicUses:366Used by:388 399 400
Symbol 368 BitmapUsed by:369
Symbol 369 GraphicUses:368Used by:388 399 400
Symbol 370 BitmapUsed by:371
Symbol 371 GraphicUses:370Used by:388 399 400
Symbol 372 BitmapUsed by:373
Symbol 373 GraphicUses:372Used by:388 399 400
Symbol 374 BitmapUsed by:375
Symbol 375 GraphicUses:374Used by:388 399 400
Symbol 376 BitmapUsed by:377
Symbol 377 GraphicUses:376Used by:388 399 400
Symbol 378 BitmapUsed by:379
Symbol 379 GraphicUses:378Used by:388 399 400
Symbol 380 BitmapUsed by:381
Symbol 381 GraphicUses:380Used by:388 399 400
Symbol 382 BitmapUsed by:383
Symbol 383 GraphicUses:382Used by:388 399 400
Symbol 384 BitmapUsed by:385
Symbol 385 GraphicUses:384Used by:388 399 400
Symbol 386 BitmapUsed by:387
Symbol 387 GraphicUses:386Used by:388 399 400
Symbol 388 MovieClipUses:363 365 367 369 371 373 375 377 379 381 383 385 387Used by:401
Symbol 389 BitmapUsed by:390
Symbol 390 GraphicUses:389Used by:399
Symbol 391 BitmapUsed by:392
Symbol 392 GraphicUses:391Used by:399 400
Symbol 393 BitmapUsed by:394
Symbol 394 GraphicUses:393Used by:399 400
Symbol 395 BitmapUsed by:396
Symbol 396 GraphicUses:395Used by:399 400
Symbol 397 BitmapUsed by:398
Symbol 398 GraphicUses:397Used by:399 400
Symbol 399 MovieClipUses:390 363 365 367 369 371 373 375 377 379 381 383 385 387 392 394 396 398Used by:401
Symbol 400 MovieClipUses:367 369 371 373 375 377 379 381 383 385 387 392 394 396 398Used by:401
Symbol 401 MovieClipUses:388 399 400Used by:402 404
Symbol 402 MovieClip [block_wall_fire]Uses:211 401Used by:Timeline
Symbol 403 MovieClip [block_chain_long]Uses:179Used by:Timeline
Symbol 404 MovieClip [column_up_fire]Uses:187 401Used by:Timeline
Symbol 405 MovieClip [#soundz]Uses:6Used by:Timeline
Symbol 406 GraphicUsed by:412 419 470 473
Symbol 407 BitmapUsed by:408
Symbol 408 GraphicUses:407Used by:419 473
Symbol 409 BitmapUsed by:410
Symbol 410 GraphicUses:409Used by:411
Symbol 411 MovieClipUses:410Used by:412 470
Symbol 412 MovieClipUses:406 411Used by:419
Symbol 413 BitmapUsed by:414
Symbol 414 GraphicUses:413Used by:415
Symbol 415 MovieClipUses:414Used by:416
Symbol 416 MovieClipUses:415Used by:419
Symbol 417 BitmapUsed by:418
Symbol 418 GraphicUses:417Used by:419
Symbol 419 MovieClipUses:406 408 412 416 418Used by:437  Timeline
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:437
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:426
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:426
Symbol 426 ButtonUses:423 425Used by:437
Symbol 427 BitmapUsed by:428
Symbol 428 GraphicUses:427Used by:431
Symbol 429 BitmapUsed by:430
Symbol 430 GraphicUses:429Used by:431
Symbol 431 ButtonUses:428 430Used by:437
Symbol 432 BitmapUsed by:433
Symbol 433 GraphicUses:432Used by:436
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:436
Symbol 436 ButtonUses:433 435Used by:437
Symbol 437 MovieClipUses:419 421 426 431 436Used by:Timeline
Symbol 438 GraphicUsed by:440
Symbol 439 GraphicUsed by:440 442
Symbol 440 ButtonUses:438 439Used by:443
Symbol 441 GraphicUsed by:442
Symbol 442 ButtonUses:441 439Used by:443
Symbol 443 MovieClipUses:440 442Used by:Timeline
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClipUses:444 31Used by:Timeline
Symbol 446 BitmapUsed by:447
Symbol 447 GraphicUses:446Used by:Timeline
Symbol 448 BitmapUsed by:449
Symbol 449 GraphicUses:448Used by:453 504
Symbol 450 BitmapUsed by:451
Symbol 451 GraphicUses:450Used by:453 504
Symbol 452 GraphicUsed by:453 458 489 494 504 505 507
Symbol 453 ButtonUses:449 451 452Used by:Timeline
Symbol 454 BitmapUsed by:455
Symbol 455 GraphicUses:454Used by:458 494 505 507
Symbol 456 BitmapUsed by:457
Symbol 457 GraphicUses:456Used by:458 494 505 507
Symbol 458 ButtonUses:455 457 452Used by:Timeline
Symbol 459 FontUsed by:460 461 462 463 464 465 466 467 468
Symbol 460 TextUses:459Used by:Timeline
Symbol 461 TextUses:459Used by:Timeline
Symbol 462 TextUses:459Used by:Timeline
Symbol 463 TextUses:459Used by:Timeline
Symbol 464 TextUses:459Used by:Timeline
Symbol 465 TextUses:459Used by:Timeline
Symbol 466 TextUses:459Used by:Timeline
Symbol 467 TextUses:459Used by:Timeline
Symbol 468 TextUses:459Used by:Timeline
Symbol 469 GraphicUsed by:Timeline
Symbol 470 MovieClipUses:406 411Used by:473
Symbol 471 BitmapUsed by:472
Symbol 472 GraphicUses:471Used by:473
Symbol 473 MovieClipUses:406 408 470 472Used by:Timeline
Symbol 474 MovieClipUses:6Used by:Timeline
Symbol 475 BitmapUsed by:476
Symbol 476 GraphicUses:475Used by:477
Symbol 477 MovieClipUses:476Used by:Timeline
Symbol 478 EditableTextUses:180Used by:Timeline
Symbol 479 BitmapUsed by:480
Symbol 480 GraphicUses:479Used by:481
Symbol 481 MovieClipUses:480Used by:Timeline
Symbol 482 EditableTextUses:180Used by:Timeline
Symbol 483 BitmapUsed by:484 503
Symbol 484 GraphicUses:483Used by:493 498 511
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:489
Symbol 487 BitmapUsed by:488
Symbol 488 GraphicUses:487Used by:489
Symbol 489 ButtonUses:486 488 452Used by:493
Symbol 490 BitmapUsed by:491
Symbol 491 GraphicUses:490Used by:492
Symbol 492 MovieClipUses:491Used by:493
Symbol 493 MovieClipUses:484 489 492Used by:Timeline
Symbol 494 ButtonUses:455 457 452Used by:498
Symbol 495 BitmapUsed by:496
Symbol 496 GraphicUses:495Used by:497
Symbol 497 MovieClipUses:496Used by:498
Symbol 498 MovieClipUses:484 494 497Used by:Timeline
Symbol 499 TextUses:180Used by:500
Symbol 500 MovieClipUses:499Used by:501
Symbol 501 MovieClipUses:500Used by:Timeline
Symbol 502 BitmapUsed by:503
Symbol 503 GraphicUses:502 483Used by:506
Symbol 504 ButtonUses:449 451 452Used by:506
Symbol 505 ButtonUses:455 457 452Used by:506
Symbol 506 MovieClipUses:503 504 505Used by:Timeline
Symbol 507 ButtonUses:455 457 452Used by:511
Symbol 508 BitmapUsed by:509
Symbol 509 GraphicUses:508Used by:510
Symbol 510 MovieClipUses:509Used by:511
Symbol 511 MovieClipUses:484 507 510Used by:Timeline

Instance Names

"soundz"Frame 6Symbol 405 MovieClip [#soundz]
"btn_sound"Frame 7Symbol 443 MovieClip
"soundStarter"Frame 7Symbol 445 MovieClip
"playBtn"Frame 8Symbol 453 Button
"all"Frame 9Symbol 474 MovieClip
"tf_lives"Frame 9Symbol 478 EditableText
"tf_score"Frame 9Symbol 482 EditableText
"wnd_next"Frame 9Symbol 493 MovieClip
"wnd_gameover"Frame 9Symbol 498 MovieClip
"ballDied"Frame 9Symbol 501 MovieClip
"wnd_pause"Frame 9Symbol 506 MovieClip
"wnd_gamecomplete"Frame 9Symbol 511 MovieClip
"tf"Symbol 25 MovieClip Frame 1Symbol 21 EditableText
"bar"Symbol 25 MovieClip Frame 1Symbol 24 MovieClip
"rmc"Symbol 62 MovieClip Frame 1Symbol 48 MovieClip
"lmc"Symbol 62 MovieClip Frame 1Symbol 47 MovieClip
"glue"Symbol 62 MovieClip Frame 1Symbol 54 MovieClip
"gun"Symbol 62 MovieClip Frame 1Symbol 61 MovieClip
"img"Symbol 63 MovieClip [caretMC] Frame 1Symbol 62 MovieClip
"blockMode"Symbol 184 MovieClip [theWall] Frame 1Symbol 183 MovieClip
"bot"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"blz"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"top0"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"pl"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"top1"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"fx"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"top2"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"fxTop"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"bnz"Symbol 474 MovieClip Frame 1Symbol 6 MovieClip
"playBtn"Symbol 493 MovieClip Frame 1Symbol 489 Button
"playBtn"Symbol 498 MovieClip Frame 1Symbol 494 Button
"bd"Symbol 501 MovieClip Frame 1Symbol 500 MovieClip
"playBtn"Symbol 506 MovieClip Frame 1Symbol 504 Button
"playBtn"Symbol 506 MovieClip Frame 1Symbol 505 Button
"playBtn"Symbol 511 MovieClip Frame 1Symbol 507 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 10 as "block_stone"
ExportAssets (56)Timeline Frame 1Symbol 512 as "__Packages.queuedObject"
ExportAssets (56)Timeline Frame 1Symbol 513 as "__Packages.tile"
ExportAssets (56)Timeline Frame 1Symbol 514 as "__Packages.caret"
ExportAssets (56)Timeline Frame 1Symbol 515 as "__Packages.ball"
ExportAssets (56)Timeline Frame 1Symbol 516 as "__Packages.bonus"
ExportAssets (56)Timeline Frame 1Symbol 517 as "__Packages.queue"
ExportAssets (56)Timeline Frame 1Symbol 518 as "__Packages.soundCollector"
ExportAssets (56)Timeline Frame 5Symbol 29 as "menu"
ExportAssets (56)Timeline Frame 5Symbol 30 as "eexplode"
ExportAssets (56)Timeline Frame 5Symbol 32 as "byeball"
ExportAssets (56)Timeline Frame 5Symbol 33 as "bonpick"
ExportAssets (56)Timeline Frame 5Symbol 34 as "magnet"
ExportAssets (56)Timeline Frame 5Symbol 35 as "paddle"
ExportAssets (56)Timeline Frame 5Symbol 36 as "brick01"
ExportAssets (56)Timeline Frame 5Symbol 37 as "brick02"
ExportAssets (56)Timeline Frame 5Symbol 38 as "LevelDone"
ExportAssets (56)Timeline Frame 5Symbol 39 as "GameOver"
ExportAssets (56)Timeline Frame 5Symbol 40 as "laser"
ExportAssets (56)Timeline Frame 5Symbol 41 as "wallhit"
ExportAssets (56)Timeline Frame 5Symbol 43 as "queue"
ExportAssets (56)Timeline Frame 5Symbol 63 as "caretMC"
ExportAssets (56)Timeline Frame 5Symbol 64 as "tileMC"
ExportAssets (56)Timeline Frame 5Symbol 65 as "ballContainer"
ExportAssets (56)Timeline Frame 5Symbol 135 as "simpleBall"
ExportAssets (56)Timeline Frame 5Symbol 137 as "circle"
ExportAssets (56)Timeline Frame 5Symbol 141 as "scin"
ExportAssets (56)Timeline Frame 5Symbol 145 as "bonus_live"
ExportAssets (56)Timeline Frame 5Symbol 149 as "bonus_lazer"
ExportAssets (56)Timeline Frame 5Symbol 153 as "lazer"
ExportAssets (56)Timeline Frame 5Symbol 157 as "bonus_glue"
ExportAssets (56)Timeline Frame 5Symbol 168 as "explode"
ExportAssets (56)Timeline Frame 5Symbol 172 as "bonus_score"
ExportAssets (56)Timeline Frame 5Symbol 176 as "bonus_wall"
ExportAssets (56)Timeline Frame 5Symbol 184 as "theWall"
ExportAssets (56)Timeline Frame 5Symbol 188 as "column_up"
ExportAssets (56)Timeline Frame 5Symbol 192 as "column_down"
ExportAssets (56)Timeline Frame 5Symbol 196 as "column_mid"
ExportAssets (56)Timeline Frame 5Symbol 200 as "block_grass"
ExportAssets (56)Timeline Frame 5Symbol 204 as "block_sand"
ExportAssets (56)Timeline Frame 5Symbol 208 as "block_rock"
ExportAssets (56)Timeline Frame 5Symbol 212 as "block_wall"
ExportAssets (56)Timeline Frame 5Symbol 216 as "grass_40x40"
ExportAssets (56)Timeline Frame 5Symbol 220 as "sand_40x40"
ExportAssets (56)Timeline Frame 5Symbol 224 as "rock_40x40"
ExportAssets (56)Timeline Frame 5Symbol 228 as "stone_40x40"
ExportAssets (56)Timeline Frame 5Symbol 232 as "grass_trg1"
ExportAssets (56)Timeline Frame 5Symbol 236 as "grass_trg2"
ExportAssets (56)Timeline Frame 5Symbol 240 as "grass_trg3"
ExportAssets (56)Timeline Frame 5Symbol 244 as "grass_trg4"
ExportAssets (56)Timeline Frame 5Symbol 248 as "rock_trg1"
ExportAssets (56)Timeline Frame 5Symbol 252 as "rock_trg2"
ExportAssets (56)Timeline Frame 5Symbol 256 as "rock_trg3"
ExportAssets (56)Timeline Frame 5Symbol 260 as "rock_trg4"
ExportAssets (56)Timeline Frame 5Symbol 264 as "stone_trg1"
ExportAssets (56)Timeline Frame 5Symbol 268 as "stone_trg2"
ExportAssets (56)Timeline Frame 5Symbol 272 as "stone_trg3"
ExportAssets (56)Timeline Frame 5Symbol 276 as "stone_trg4"
ExportAssets (56)Timeline Frame 5Symbol 280 as "wall_trg1"
ExportAssets (56)Timeline Frame 5Symbol 284 as "wall_trg2"
ExportAssets (56)Timeline Frame 5Symbol 288 as "wall_trg3"
ExportAssets (56)Timeline Frame 5Symbol 292 as "wall_trg4"
ExportAssets (56)Timeline Frame 5Symbol 296 as "wall_arka1"
ExportAssets (56)Timeline Frame 5Symbol 300 as "wall_arka2"
ExportAssets (56)Timeline Frame 5Symbol 304 as "sand_trg3"
ExportAssets (56)Timeline Frame 5Symbol 308 as "sand_trg4"
ExportAssets (56)Timeline Frame 5Symbol 312 as "head1"
ExportAssets (56)Timeline Frame 5Symbol 316 as "head2"
ExportAssets (56)Timeline Frame 5Symbol 320 as "head3"
ExportAssets (56)Timeline Frame 5Symbol 324 as "head4"
ExportAssets (56)Timeline Frame 5Symbol 328 as "chest_left"
ExportAssets (56)Timeline Frame 5Symbol 332 as "chest_mid"
ExportAssets (56)Timeline Frame 5Symbol 336 as "chest_right"
ExportAssets (56)Timeline Frame 5Symbol 340 as "gear"
ExportAssets (56)Timeline Frame 5Symbol 344 as "bonus_fire"
ExportAssets (56)Timeline Frame 5Symbol 348 as "bonus_widecaret"
ExportAssets (56)Timeline Frame 5Symbol 352 as "bonus_triple"
ExportAssets (56)Timeline Frame 5Symbol 356 as "head1_bomb"
ExportAssets (56)Timeline Frame 5Symbol 359 as "block_chain"
ExportAssets (56)Timeline Frame 5Symbol 360 as "block_chain_rotated_45"
ExportAssets (56)Timeline Frame 5Symbol 361 as "gear_unbreak"
ExportAssets (56)Timeline Frame 5Symbol 402 as "block_wall_fire"
ExportAssets (56)Timeline Frame 5Symbol 403 as "block_chain_long"
ExportAssets (56)Timeline Frame 5Symbol 404 as "column_up_fire"
ExportAssets (56)Timeline Frame 6Symbol 405 as "#soundz"

Labels

"init"Frame 6
"menu"Frame 7
"help"Frame 8
"game"Frame 9
"none"Symbol 61 MovieClip Frame 1
"lazer"Symbol 61 MovieClip Frame 2
"rocket"Symbol 61 MovieClip Frame 3
"freeze"Symbol 61 MovieClip Frame 4
"none"Symbol 135 MovieClip [simpleBall] Frame 1
"acid"Symbol 135 MovieClip [simpleBall] Frame 2
"fire"Symbol 135 MovieClip [simpleBall] Frame 3
"ice"Symbol 183 MovieClip Frame 2
"fire"Symbol 183 MovieClip Frame 3
"start"Symbol 445 MovieClip Frame 5
"stop"Symbol 445 MovieClip Frame 10




http://swfchan.com/6/25871/info.shtml
Created: 23/5 -2019 07:01:16 Last modified: 23/5 -2019 07:01:16 Server time: 02/05 -2024 08:42:07