/*! Built with IMPACT - impactjs.com */

Number.prototype.map=function(istart,istop,ostart,ostop){return ostart+(ostop-ostart)*((this-istart)/(istop-istart));};Number.prototype.limit=function(min,max){return Math.min(max,Math.max(min,this));};Number.prototype.round=function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;};Number.prototype.floor=function(){return Math.floor(this);};Number.prototype.ceil=function(){return Math.ceil(this);};Number.prototype.toInt=function(){return(this|0);};Array.prototype.erase=function(item){for(var i=this.length;i--;){if(this[i]===item){this.splice(i,1);}}
return this;};Array.prototype.random=function(){return this[Math.floor(Math.random()*this.length)];};Function.prototype.bind=function(bind){var self=this;return function(){var args=Array.prototype.slice.call(arguments);return self.apply(bind||null,args);};};(function(window){window.ig={game:null,debug:null,version:'1.18a',global:window,modules:{},resources:[],ready:false,baked:false,nocache:'',ua:{},lib:'lib/',_current:null,_loadQueue:[],_waitForOnload:0,$:function(selector){return selector.charAt(0)=='#'?document.getElementById(selector.substr(1)):document.getElementsByTagName(selector);},$new:function(name){return document.createElement(name);},copy:function(object){if(!object||typeof(object)!='object'||object instanceof HTMLElement||object instanceof ig.Class){return object;}
else if(object instanceof Array){var c=[];for(var i=0,l=object.length;i<l;i++){c[i]=ig.copy(object[i]);}
return c;}
else{var c={};for(var i in object){c[i]=ig.copy(object[i]);}
return c;}},merge:function(original,extended){for(var key in extended){var ext=extended[key];if(typeof(ext)!='object'||ext instanceof HTMLElement||ext instanceof ig.Class){original[key]=ext;}
else{if(!original[key]||typeof(original[key])!='object'){original[key]=(ext instanceof Array)?[]:{};}
ig.merge(original[key],ext);}}
return original;},ksort:function(obj){if(!obj||typeof(obj)!='object'){return[];}
var keys=[],values=[];for(var i in obj){keys.push(i);}
keys.sort();for(var i=0;i<keys.length;i++){values.push(obj[keys[i]]);}
return values;},module:function(name){if(ig._current){throw("Module '"+ig._current.name+"' defines nothing");}
if(ig.modules[name]&&ig.modules[name].body){throw("Module '"+name+"' is already defined");}
ig._current={name:name,requires:[],loaded:false,body:null};ig.modules[name]=ig._current;ig._loadQueue.push(ig._current);ig._initDOMReady();return ig;},requires:function(){ig._current.requires=Array.prototype.slice.call(arguments);return ig;},defines:function(body){name=ig._current.name;ig._current.body=body;ig._current=null;ig._execModules();},addResource:function(resource){ig.resources.push(resource);},setNocache:function(set){ig.nocache=set?'?'+Date.now():'';},log:function(){},show:function(name,number){},mark:function(msg,color){},_loadScript:function(name,requiredFrom){ig.modules[name]={name:name,requires:[],loaded:false,body:null};ig._waitForOnload++;var path=ig.lib+name.replace(/\./g,'/')+'.js'+ig.nocache;var script=ig.$new('script');script.type='text/javascript';script.src=path;script.onload=function(){ig._waitForOnload--;ig._execModules();};script.onerror=function(){throw('Failed to load module '+name+' at '+path+' '+'required from '+requiredFrom);};ig.$('head')[0].appendChild(script);},_execModules:function(){var modulesLoaded=false;for(var i=0;i<ig._loadQueue.length;i++){var m=ig._loadQueue[i];var dependenciesLoaded=true;for(var j=0;j<m.requires.length;j++){var name=m.requires[j];if(!ig.modules[name]){dependenciesLoaded=false;ig._loadScript(name,m.name);}
else if(!ig.modules[name].loaded){dependenciesLoaded=false;}}
if(dependenciesLoaded&&m.body){ig._loadQueue.splice(i,1);m.loaded=true;m.body();modulesLoaded=true;i--;}}
if(modulesLoaded){ig._execModules();}
else if(!ig.baked&&ig._waitForOnload==0&&ig._loadQueue.length!=0){var unresolved=[];for(var i=0;i<ig._loadQueue.length;i++){var unloaded=[];var requires=ig._loadQueue[i].requires;for(var j=0;j<requires.length;j++){var m=ig.modules[requires[j]];if(!m||!m.loaded){unloaded.push(requires[j]);}}
unresolved.push(ig._loadQueue[i].name+' (requires: '+unloaded.join(', ')+')');}
throw('Unresolved (circular?) dependencies. '+"Most likely there's a name/path mismatch for one of the listed modules:\n"+
unresolved.join('\n'));}},_DOMReady:function(){if(!ig.modules['dom.ready'].loaded){if(!document.body){return setTimeout(ig._DOMReady,13);}
ig.modules['dom.ready'].loaded=true;ig._waitForOnload--;ig._execModules();}
return 0;},_boot:function(){if(document.location.href.match(/\?nocache/)){ig.setNocache(true);}
ig.ua.pixelRatio=window.devicePixelRatio||1;ig.ua.viewport={width:window.innerWidth,height:window.innerHeight};ig.ua.screen={width:window.screen.availWidth*ig.ua.pixelRatio,height:window.screen.availHeight*ig.ua.pixelRatio};ig.ua.iPhone=/iPhone/i.test(navigator.userAgent);ig.ua.iPhone4=(ig.ua.iPhone&&ig.ua.pixelRatio==2);ig.ua.iPad=/iPad/i.test(navigator.userAgent);ig.ua.android=/android/i.test(navigator.userAgent);ig.ua.iOS=ig.ua.iPhone||ig.ua.iPad;ig.ua.mobile=ig.ua.iOS||ig.ua.android;},_initDOMReady:function(){if(ig.modules['dom.ready']){return;}
ig._boot();ig.modules['dom.ready']={requires:[],loaded:false,body:null};ig._waitForOnload++;if(document.readyState==='complete'){ig._DOMReady();}
else{document.addEventListener('DOMContentLoaded',ig._DOMReady,false);window.addEventListener('load',ig._DOMReady,false);}}};var initializing=false,fnTest=/xyz/.test(function(){xyz;})?/\bparent\b/:/.*/;window.ig.Class=function(){};var inject=function(prop){var proto=this.prototype;var parent={};for(var name in prop){if(typeof(prop[name])=="function"&&typeof(proto[name])=="function"&&fnTest.test(prop[name])){parent[name]=proto[name];proto[name]=(function(name,fn){return function(){var tmp=this.parent;this.parent=parent[name];var ret=fn.apply(this,arguments);this.parent=tmp;return ret;};})(name,prop[name]);}
else{proto[name]=prop[name];}}};window.ig.Class.extend=function(prop){var parent=this.prototype;initializing=true;var prototype=new this();initializing=false;for(var name in prop){if(typeof(prop[name])=="function"&&typeof(parent[name])=="function"&&fnTest.test(prop[name])){prototype[name]=(function(name,fn){return function(){var tmp=this.parent;this.parent=parent[name];var ret=fn.apply(this,arguments);this.parent=tmp;return ret;};})(name,prop[name]);}
else{prototype[name]=prop[name];}}
function Class(){if(!initializing){if(this.staticInstantiate){var obj=this.staticInstantiate.apply(this,arguments);if(obj){return obj;}}
for(var p in this){if(typeof(this[p])=='object'){this[p]=ig.copy(this[p]);}}
if(this.init){this.init.apply(this,arguments);}}
return this;}
Class.prototype=prototype;Class.constructor=Class;Class.extend=arguments.callee;Class.inject=inject;return Class;};})(window);

// lib/impact/image.js
ig.baked=true;ig.module('impact.image').defines(function(){ig.Image=ig.Class.extend({data:null,width:0,height:0,loaded:false,failed:false,loadCallback:null,path:'',staticInstantiate:function(path){return ig.Image.cache[path]||null;},init:function(path){this.path=path;this.load();},load:function(loadCallback){if(this.loaded){if(loadCallback){loadCallback(this.path,true);}
return;}
else if(!this.loaded&&ig.ready){this.loadCallback=loadCallback||null;this.data=new Image();this.data.onload=this.onload.bind(this);this.data.onerror=this.onerror.bind(this);this.data.src=this.path+ig.nocache;}
else{ig.addResource(this);}
ig.Image.cache[this.path]=this;},reload:function(){this.loaded=false;this.data=new Image();this.data.onload=this.onload.bind(this);this.data.src=this.path+'?'+Date.now();},onload:function(event){this.width=this.data.width;this.height=this.data.height;if(ig.system.scale!=1){this.resize(ig.system.scale);}
this.loaded=true;if(this.loadCallback){this.loadCallback(this.path,true);}},onerror:function(event){this.failed=true;if(this.loadCallback){this.loadCallback(this.path,false);}},resize:function(scale){var widthScaled=this.width*scale;var heightScaled=this.height*scale;var orig=ig.$new('canvas');orig.width=this.width;orig.height=this.height;var origCtx=orig.getContext('2d');origCtx.drawImage(this.data,0,0,this.width,this.height,0,0,this.width,this.height);var origPixels=origCtx.getImageData(0,0,this.width,this.height);var scaled=ig.$new('canvas');scaled.width=widthScaled;scaled.height=heightScaled;var scaledCtx=scaled.getContext('2d');var scaledPixels=scaledCtx.getImageData(0,0,widthScaled,heightScaled);for(var y=0;y<heightScaled;y++){for(var x=0;x<widthScaled;x++){var index=(Math.floor(y/scale)*this.width+Math.floor(x/scale))*4;var indexScaled=(y*widthScaled+x)*4;scaledPixels.data[indexScaled]=origPixels.data[index];scaledPixels.data[indexScaled+1]=origPixels.data[index+1];scaledPixels.data[indexScaled+2]=origPixels.data[index+2];scaledPixels.data[indexScaled+3]=origPixels.data[index+3];}}
scaledCtx.putImageData(scaledPixels,0,0);this.data=scaled;},draw:function(targetX,targetY,sourceX,sourceY,width,height){if(!this.loaded){return;}
var scale=ig.system.scale;sourceX=sourceX?sourceX*scale:0;sourceY=sourceY?sourceY*scale:0;width=(width?width:this.width)*scale;height=(height?height:this.height)*scale;ig.system.context.drawImage(this.data,sourceX,sourceY,width,height,ig.system.getDrawPos(targetX),ig.system.getDrawPos(targetY),width,height);ig.Image.drawCount++;},drawTile:function(targetX,targetY,tile,tileWidth,tileHeight,flipX,flipY){tileHeight=tileHeight?tileHeight:tileWidth;if(!this.loaded||tileWidth>this.width||tileHeight>this.height){return;}
var scale=ig.system.scale;var tileWidthScaled=tileWidth*scale;var tileHeightScaled=tileHeight*scale;var scaleX=flipX?-1:1;var scaleY=flipY?-1:1;if(flipX||flipY){ig.system.context.save();ig.system.context.scale(scaleX,scaleY);}
ig.system.context.drawImage(this.data,(Math.floor(tile*tileWidth)%this.width)*scale,(Math.floor(tile*tileWidth/this.width)*tileHeight)*scale,tileWidthScaled,tileHeightScaled,ig.system.getDrawPos(targetX)*scaleX-(flipX?tileWidthScaled:0),ig.system.getDrawPos(targetY)*scaleY-(flipY?tileHeightScaled:0),tileWidthScaled,tileHeightScaled);if(flipX||flipY){ig.system.context.restore();}
ig.Image.drawCount++;}});ig.Image.drawCount=0;ig.Image.cache={};ig.Image.reloadCache=function(){for(path in ig.Image.cache){ig.Image.cache[path].reload();}};});

// lib/impact/font.js
ig.baked=true;ig.module('impact.font').requires('impact.image').defines(function(){ig.Font=ig.Image.extend({widthMap:[],indices:[],firstChar:32,height:0,onload:function(ev){this._loadMetrics(this.data);this.parent(ev);},widthForString:function(s){if(typeof(s)=='undefined'||s==null){return 0;}
var width=0;for(var i=0;i<s.length;i++){width+=this.widthMap[s.charCodeAt(i)-this.firstChar]+1;}
return width;},draw:function(text,x,y,align){if(typeof(text)!='string'){text=text.toString();}
if(align==ig.Font.ALIGN.RIGHT||align==ig.Font.ALIGN.CENTER){var width=0;for(var i=0;i<text.length;i++){var c=text.charCodeAt(i);width+=this.widthMap[c-this.firstChar]+1;}
x-=align==ig.Font.ALIGN.CENTER?width/2:width;}
for(var i=0;i<text.length;i++){var c=text.charCodeAt(i);x+=this._drawChar(c-this.firstChar,x,y);}
ig.Image.drawCount+=text.length;},_drawChar:function(c,targetX,targetY){if(!this.loaded||c<0||c>=this.indices.length){return 0;}
var scale=ig.system.scale;var charX=this.indices[c]*scale;var charY=0;var charWidth=this.widthMap[c]*scale;var charHeight=(this.height-2)*scale;ig.system.context.drawImage(this.data,charX,charY,charWidth,charHeight,ig.system.getDrawPos(targetX),ig.system.getDrawPos(targetY),charWidth,charHeight);return this.widthMap[c]+1;},_loadMetrics:function(image){this.height=image.height-1;this.widthMap=[];this.indices=[];var canvas=ig.$new('canvas');canvas.width=image.width;canvas.height=image.height;var ctx=canvas.getContext('2d');ctx.drawImage(image,0,0);var px=ctx.getImageData(0,image.height-1,image.width,1);var currentChar=0;var currentWidth=0;for(var x=0;x<image.width;x++){var index=x*4+3;if(px.data[index]!=0){currentWidth++;}
else if(px.data[index]==0&&currentWidth){this.widthMap.push(currentWidth);this.indices.push(x-currentWidth);currentChar++;currentWidth=0;}}
this.widthMap.push(currentWidth);this.indices.push(x-currentWidth);}});ig.Font.ALIGN={LEFT:0,RIGHT:1,CENTER:2};});

// lib/impact/sound.js
ig.baked=true;ig.module('impact.sound').defines(function(){ig.SoundManager=ig.Class.extend({clips:{},volume:1,format:null,init:function(){var probe=new Audio();for(var i=0;i<ig.Sound.use.length;i++){var format=ig.Sound.use[i];if(probe.canPlayType(format.mime)){this.format=format;break;}}
if(!this.format){ig.Sound.enabled=false;}},load:function(path,multiChannel,loadCallback){var realPath=path.match(/^(.*)\.[^\.]+$/)[1]+'.'+this.format.ext+ig.nocache;if(this.clips[path]){if(multiChannel&&this.clips[path].length<ig.Sound.channels){for(var i=this.clips[path].length;i<ig.Sound.channels;i++){var a=new Audio(realPath);a.load();this.clips[path].push(a);}}
return this.clips[path][0];}
var clip=new Audio(realPath);if(loadCallback){clip.addEventListener('canplaythrough',function(ev){this.removeEventListener('canplaythrough',arguments.callee,false);loadCallback(path,true,ev);},false);clip.addEventListener('error',function(ev){loadCallback(path,true,ev);},false);}
clip.load();this.clips[path]=[clip];if(multiChannel){for(var i=1;i<ig.Sound.channels;i++){var a=new Audio(realPath);a.load();this.clips[path].push(a);}}
return clip;},get:function(path){var channels=this.clips[path];for(var i=0,clip;clip=channels[i++];){if(clip.paused||clip.ended){if(clip.ended){clip.currentTime=0;}
return clip;}}
channels[0].pause();channels[0].currentTime=0;return channels[0];}});ig.Music=ig.Class.extend({tracks:[],names:[],currentTrack:null,currentIndex:0,random:false,oneshot:false,_volume:1,_loop:false,_fadeInterval:0,_fadeTimer:null,_endedCallbackBound:null,init:function(){this._endedCallbackBound=this._endedCallback.bind(this);if(Object.defineProperty){Object.defineProperty(this,"volume",{get:this.getVolume.bind(this),set:this.setVolume.bind(this)});Object.defineProperty(this,"loop",{get:this.getLooping.bind(this),set:this.setLooping.bind(this)});}
else if(this.__defineGetter__){this.__defineGetter__('volume',this.getVolume.bind(this));this.__defineSetter__('volume',this.setVolume.bind(this));this.__defineGetter__('loop',this.getLooping.bind(this));this.__defineSetter__('loop',this.setLooping.bind(this));}},add:function(music,name){if(!ig.Sound.enabled){return;}
name=typeof(name)!='undefined'?name:'n/a';var path=music instanceof ig.Sound?music.path:music;var track=ig.soundManager.load(path,false);track.loop=this._loop;track.volume=this._volume;track.addEventListener('ended',this._endedCallbackBound,false);this.tracks.push(track);this.names.push(name);if(!this.currentTrack){this.currentTrack=track;}},next:function(){if(!this.tracks.length){return;}
this.stop();this.currentIndex=this.random?Math.floor(Math.random()*this.tracks.length):(this.currentIndex+1)%this.tracks.length;this.currentTrack=this.tracks[this.currentIndex];this.play();},pause:function(){if(!this.currentTrack){return;}
this.currentTrack.pause();},stop:function(){if(!this.currentTrack){return;}
if(this.currentTrack.currentTime){this.currentTrack.currentTime=0;}
this.currentTrack.pause();},play:function(){if(!this.currentTrack){return;}
this.currentTrack.play();},playByNumber:function(ndx){if(!this.tracks.length){return;}
if(this.currentIndex!=ndx){this.stop();this.currentIndex=ndx%this.tracks.length;this.currentTrack=this.tracks[this.currentIndex];}
this.play();},playByName:function(name){if(!this.tracks.length){return false;}
for(var i=0;i<this.names.length;i++){if(this.names[i]==name){this.playByNumber(i);return true;}}
return false;},getLooping:function(){return this._loop;},setLooping:function(l){this._loop=l;for(var i in this.tracks){this.tracks[i].loop=l;}},getOneshot:function(){return this.oneshot;},setOneshot:function(val){this.oneshot=val;},getVolume:function(){return this._volume;},setVolume:function(v){this._volume=v.limit(0,1);for(var i in this.tracks){this.tracks[i].volume=this._volume;}},fadeOut:function(time){if(!this.currentTrack){return;}
clearInterval(this._fadeInterval);this.fadeTimer=new ig.Timer(time);this._fadeInterval=setInterval(this._fadeStep.bind(this),50);},_fadeStep:function(){var v=this.fadeTimer.delta().map(-this.fadeTimer.target,0,1,0).limit(0,1)*this._volume;if(v<=0.01){this.stop();this.currentTrack.volume=this._volume;clearInterval(this._fadeInterval);}
else{this.currentTrack.volume=v;}},_endedCallback:function(){if(this._loop){this.play();}
else if(this.oneshot){}
else{this.next();}}});ig.Sound=ig.Class.extend({path:'',volume:1,currentClip:null,multiChannel:true,init:function(path,multiChannel){this.path=path;this.multiChannel=(multiChannel!==false);this.load();},load:function(loadCallback){if(!ig.Sound.enabled){if(loadCallback){loadCallback(this.path,true);}
return;}
if(ig.ready){ig.soundManager.load(this.path,this.multiChannel,loadCallback);}
else{ig.addResource(this);}},play:function(){if(!ig.Sound.enabled){return;}
this.currentClip=ig.soundManager.get(this.path);this.currentClip.volume=ig.soundManager.volume*this.volume;this.currentClip.play();},stop:function(){if(this.currentClip){this.currentClip.pause();this.currentClip.currentTime=0;}}});ig.Sound.FORMAT={MP3:{ext:'mp3',mime:'audio/mpeg'},M4A:{ext:'m4a',mime:'audio/mp4; codecs=mp4a'},OGG:{ext:'ogg',mime:'audio/ogg; codecs=vorbis'},WEBM:{ext:'webm',mime:'audio/webm; codecs=vorbis'},CAF:{ext:'caf',mime:'audio/x-caf'}};ig.Sound.use=[ig.Sound.FORMAT.OGG,ig.Sound.FORMAT.MP3];ig.Sound.channels=4;ig.Sound.enabled=true;});

// lib/impact/loader.js
ig.baked=true;ig.module('impact.loader').requires('impact.image','impact.font','impact.sound').defines(function(){ig.Loader=ig.Class.extend({resources:[],gameClass:null,status:0,done:false,_unloaded:[],_drawStatus:0,_intervalId:0,_loadCallbackBound:null,init:function(gameClass,resources){this.gameClass=gameClass;this.resources=resources;this._loadCallbackBound=this._loadCallback.bind(this);for(var i=0;i<this.resources.length;i++){this._unloaded.push(this.resources[i].path);}},load:function(){ig.system.clear('#000');if(!this.resources.length){this.end();return;}
for(var i=0;i<this.resources.length;i++){this.loadResource(this.resources[i]);}
this._intervalId=setInterval(this.draw.bind(this),16);},loadResource:function(res){res.load(this._loadCallbackBound);},end:function(){if(this.done){return;}
this.done=true;clearInterval(this._intervalId);ig.system.setGame(this.gameClass);},draw:function(){this._drawStatus+=(this.status-this._drawStatus)/5;var s=ig.system.scale;var w=ig.system.width*0.6;var h=ig.system.height*0.1;var x=ig.system.width*0.5-w/2;var y=ig.system.height*0.5-h/2;ig.system.context.fillStyle='#000';ig.system.context.fillRect(0,0,480,320);ig.system.context.fillStyle='#fff';ig.system.context.fillRect(x*s,y*s,w*s,h*s);ig.system.context.fillStyle='#000';ig.system.context.fillRect(x*s+s,y*s+s,w*s-s-s,h*s-s-s);ig.system.context.fillStyle='#fff';ig.system.context.fillRect(x*s,y*s,w*s*this._drawStatus,h*s);},_loadCallback:function(path,status){if(status){this._unloaded.erase(path);}
else{throw('Failed to load resource: '+path);}
this.status=1-(this._unloaded.length/this.resources.length);if(this._unloaded.length==0){setTimeout(this.end.bind(this),250);}}});});

// lib/impact/timer.js
ig.baked=true;ig.module('impact.timer').defines(function(){ig.Timer=ig.Class.extend({target:0,base:0,last:0,init:function(seconds){this.base=ig.Timer.time;this.last=ig.Timer.time;this.target=seconds||0;},set:function(seconds){this.target=seconds||0;this.base=ig.Timer.time;},reset:function(){this.base=ig.Timer.time;},tick:function(){var delta=ig.Timer.time-this.last;this.last=ig.Timer.time;return delta;},delta:function(){return ig.Timer.time-this.base-this.target;}});ig.Timer._last=0;ig.Timer.time=0;ig.Timer.timeScale=1;ig.Timer.maxStep=0.05;ig.Timer.step=function(){var current=Date.now();var delta=(current-ig.Timer._last)/1000;ig.Timer.time+=Math.min(delta,ig.Timer.maxStep)*ig.Timer.timeScale;ig.Timer._last=current;};});

// lib/impact/system.js
ig.baked=true;ig.module('impact.system').requires('impact.timer','impact.image').defines(function(){ig.System=ig.Class.extend({fps:30,width:320,height:240,realWidth:320,realHeight:240,scale:1,tick:0,intervalId:0,newGameClass:null,running:false,delegate:null,clock:null,canvas:null,context:null,smoothPositioning:true,init:function(canvasId,fps,width,height,scale){this.fps=fps;this.clock=new ig.Timer();this.canvas=ig.$(canvasId);this.resize(width,height,scale);this.context=this.canvas.getContext('2d');},resize:function(width,height,scale){this.width=width;this.height=height;this.scale=scale||this.scale;this.realWidth=this.width*this.scale;this.realHeight=this.height*this.scale;this.canvas.width=this.realWidth;this.canvas.height=this.realHeight;},setGame:function(gameClass){if(this.running){this.newGameClass=gameClass;}
else{this.setGameNow(gameClass);}},setGameNow:function(gameClass){ig.game=new(gameClass)();ig.system.setDelegate(ig.game);},setDelegate:function(object){if(typeof(object.run)=='function'){this.delegate=object;this.startRunLoop();}else{throw('System.setDelegate: No run() function in object');}},stopRunLoop:function(){clearInterval(this.intervalId);this.running=false;},startRunLoop:function(){this.stopRunLoop();this.intervalId=setInterval(this.run.bind(this),1000/this.fps);this.running=true;},clear:function(color){this.context.fillStyle=color;this.context.fillRect(0,0,this.realWidth,this.realHeight);},run:function(){ig.Timer.step();this.tick=this.clock.tick();this.delegate.run();ig.input.clearPressed();if(this.newGameClass){this.setGameNow(this.newGameClass);this.newGameClass=null;}},getDrawPos:function(p){return this.smoothPositioning?Math.round(p*this.scale):Math.round(p)*this.scale;}});});

// lib/impact/input.js
ig.baked=true;ig.module('impact.input').defines(function(){ig.KEY={'MOUSE1':-1,'MOUSE2':-3,'MWHEEL_UP':-4,'MWHEEL_DOWN':-5,'BACKSPACE':8,'TAB':9,'ENTER':13,'PAUSE':19,'CAPS':20,'ESC':27,'SPACE':32,'PAGE_UP':33,'PAGE_DOWN':34,'END':35,'HOME':36,'LEFT_ARROW':37,'UP_ARROW':38,'RIGHT_ARROW':39,'DOWN_ARROW':40,'INSERT':45,'DELETE':46,'_0':48,'_1':49,'_2':50,'_3':51,'_4':52,'_5':53,'_6':54,'_7':55,'_8':56,'_9':57,'A':65,'B':66,'C':67,'D':68,'E':69,'F':70,'G':71,'H':72,'I':73,'J':74,'K':75,'L':76,'M':77,'N':78,'O':79,'P':80,'Q':81,'R':82,'S':83,'T':84,'U':85,'V':86,'W':87,'X':88,'Y':89,'Z':90,'NUMPAD_0':96,'NUMPAD_1':97,'NUMPAD_2':98,'NUMPAD_3':99,'NUMPAD_4':100,'NUMPAD_5':101,'NUMPAD_6':102,'NUMPAD_7':103,'NUMPAD_8':104,'NUMPAD_9':105,'MULTIPLY':106,'ADD':107,'SUBSTRACT':109,'DECIMAL':110,'DIVIDE':111,'F1':112,'F2':113,'F3':114,'F4':115,'F5':116,'F6':117,'F7':118,'F8':119,'F9':120,'F10':121,'F11':122,'F12':123,'SHIFT':16,'CTRL':17,'ALT':18,'PLUS':187,'COMMA':188,'MINUS':189,'PERIOD':190};ig.Input=ig.Class.extend({bindings:{},actions:{},presses:{},locks:{},delayedKeyup:[],isUsingMouse:false,isUsingKeyboard:false,isUsingAccelerometer:false,mouse:{x:0,y:0},accel:{x:0,y:0,z:0},initMouse:function(){if(this.isUsingMouse){return;}
this.isUsingMouse=true;window.addEventListener('mousewheel',this.mousewheel.bind(this),false);ig.system.canvas.addEventListener('contextmenu',this.contextmenu.bind(this),false);ig.system.canvas.addEventListener('mousedown',this.keydown.bind(this),false);ig.system.canvas.addEventListener('mouseup',this.keyup.bind(this),false);ig.system.canvas.addEventListener('mousemove',this.mousemove.bind(this),false);ig.system.canvas.addEventListener('touchstart',this.keydown.bind(this),false);ig.system.canvas.addEventListener('touchend',this.keyup.bind(this),false);ig.system.canvas.addEventListener('touchmove',this.mousemove.bind(this),false);},initKeyboard:function(){if(this.isUsingKeyboard){return;}
this.isUsingKeyboard=true;window.addEventListener('keydown',this.keydown.bind(this),false);window.addEventListener('keyup',this.keyup.bind(this),false);},initAccelerometer:function(){if(this.isUsingAccelerometer){return;}
window.addEventListener('devicemotion',this.devicemotion.bind(this),false);},mousewheel:function(event){var code=event.wheel>0?ig.KEY.MWHEEL_UP:ig.KEY.MWHEEL_DOWN;var action=this.bindings[code];if(action){this.actions[action]=true;this.presses[action]=true;event.stopPropagation();this.delayedKeyup.push(action);}},mousemove:function(event){var el=ig.system.canvas;var pos={left:0,top:0};while(el!=null){pos.left+=el.offsetLeft;pos.top+=el.offsetTop;el=el.offsetParent;}
var tx=event.pageX;var ty=event.pageY;if(event.touches){tx=event.touches[0].clientX;ty=event.touches[0].clientY;}
this.mouse.x=(tx-pos.left)/ig.system.scale;this.mouse.y=(ty-pos.top)/ig.system.scale;},contextmenu:function(event){if(this.bindings[ig.KEY.MOUSE2]){event.stopPropagation();event.preventDefault();}},keydown:function(event){if(event.target.type=='text'){return;}
var code=event.type=='keydown'?event.keyCode:(event.button==2?ig.KEY.MOUSE2:ig.KEY.MOUSE1);if(event.type=='touchstart'||event.type=='mousedown'){this.mousemove(event);}
var action=this.bindings[code];if(action){this.actions[action]=true;if(!this.locks[action]){this.presses[action]=true;this.locks[action]=true;}
event.stopPropagation();event.preventDefault();}},keyup:function(event){if(event.target.type=='text'){return;}
var code=event.type=='keyup'?event.keyCode:(event.button==2?ig.KEY.MOUSE2:ig.KEY.MOUSE1);var action=this.bindings[code];if(action){this.delayedKeyup.push(action);event.stopPropagation();event.preventDefault();}},devicemotion:function(event){this.accel=event.accelerationIncludingGravity;},bind:function(key,action){if(key<0){this.initMouse();}
else if(key>0){this.initKeyboard();}
this.bindings[key]=action;},bindTouch:function(selector,action){var element=ig.$(selector);var that=this;element.addEventListener('touchstart',function(ev){that.touchStart(ev,action);},false);element.addEventListener('touchend',function(ev){that.touchEnd(ev,action);},false);},unbind:function(key){this.bindings[key]=null;},unbindAll:function(){this.bindings=[];},state:function(action){return this.actions[action];},pressed:function(action){return this.presses[action];},clearPressed:function(){for(var i=0;i<this.delayedKeyup.length;i++){var action=this.delayedKeyup[i];this.actions[action]=false;this.locks[action]=false;}
this.delayedKeyup=[];this.presses={};},touchStart:function(event,action){this.actions[action]=true;this.presses[action]=true;event.stopPropagation();event.preventDefault();return false;},touchEnd:function(event,action){this.delayedKeyup.push(action);event.stopPropagation();event.preventDefault();return false;}});});

// lib/impact/impact.js
ig.baked=true;ig.module('impact.impact').requires('dom.ready','impact.loader','impact.system','impact.input','impact.sound').defines(function(){ig.main=function(canvasId,gameClass,fps,width,height,scale,loaderClass){ig.system=new ig.System(canvasId,fps,width,height,scale||1);ig.input=new ig.Input();ig.soundManager=new ig.SoundManager();ig.music=new ig.Music();ig.ready=true;var loader=new(loaderClass||ig.Loader)(gameClass,ig.resources);loader.load();};});

// lib/impact/animation.js
ig.baked=true;ig.module('impact.animation').requires('impact.timer','impact.image').defines(function(){ig.AnimationSheet=ig.Class.extend({width:8,height:8,image:null,init:function(path,width,height){this.width=width;this.height=height;this.image=new ig.Image(path);}});ig.Animation=ig.Class.extend({sheet:null,timer:null,sequence:[],flip:{x:false,y:false},pivot:{x:0,y:0},frame:0,tile:0,loopCount:0,alpha:1,angle:0,init:function(sheet,frameTime,sequence,stop){this.sheet=sheet;this.pivot={x:sheet.width/2,y:sheet.height/2};this.timer=new ig.Timer();this.frameTime=frameTime;this.sequence=sequence;this.stop=!!stop;this.tile=this.sequence[0];},rewind:function(){this.timer.reset();this.loopCount=0;this.tile=this.sequence[0];return this;},gotoFrame:function(f){this.timer.set(this.frameTime*-f);this.update();},gotoRandomFrame:function(){this.gotoFrame(Math.floor(Math.random()*this.sequence.length))},update:function(){var frameTotal=Math.floor(this.timer.delta()/this.frameTime);this.loopCount=Math.floor(frameTotal/this.sequence.length);if(this.stop&&this.loopCount>0){this.frame=this.sequence.length-1;}
else{this.frame=frameTotal%this.sequence.length;}
this.tile=this.sequence[this.frame];},draw:function(targetX,targetY){var bbsize=Math.max(this.sheet.width,this.sheet.height);if(targetX>ig.system.width||targetY>ig.system.height||targetX+bbsize<0||targetY+bbsize<0){return;}
if(this.alpha!=1){ig.system.context.globalAlpha=this.alpha;}
if(this.angle==0){this.sheet.image.drawTile(targetX,targetY,this.tile,this.sheet.width,this.sheet.height,this.flip.x,this.flip.y);}
else{ig.system.context.save();ig.system.context.translate(ig.system.getDrawPos(targetX+this.pivot.x),ig.system.getDrawPos(targetY+this.pivot.y));ig.system.context.rotate(this.angle);this.sheet.image.drawTile(-this.pivot.x,-this.pivot.y,this.tile,this.sheet.width,this.sheet.height,this.flip.x,this.flip.y);ig.system.context.restore();}
if(this.alpha!=1){ig.system.context.globalAlpha=1;}}});});

// lib/impact/entity.js
ig.baked=true;ig.module('impact.entity').requires('impact.animation','impact.impact').defines(function(){ig.Entity=ig.Class.extend({id:0,settings:{},size:{x:16,y:16},offset:{x:0,y:0},pos:{x:0,y:0},last:{x:0,y:0},vel:{x:0,y:0},accel:{x:0,y:0},friction:{x:0,y:0},maxVel:{x:100,y:100},zIndex:0,gravityFactor:1,standing:false,bounciness:0,minBounceVelocity:40,anims:{},animSheet:null,currentAnim:null,health:10,type:0,checkAgainst:0,collides:0,collidetiles:[false,true,false,true,],_killed:false,init:function(x,y,settings){this.id=++ig.Entity._lastId;this.pos.x=x;this.pos.y=y;ig.merge(this,settings);},addAnim:function(name,frameTime,sequence,stop){if(!this.animSheet){throw('No animSheet to add the animation '+name+' to.');}
var a=new ig.Animation(this.animSheet,frameTime,sequence,stop);this.anims[name]=a;if(!this.currentAnim){this.currentAnim=a;}
return a;},update:function(){this.last.x=this.pos.x;this.last.y=this.pos.y;this.vel.y+=ig.game.gravity*ig.system.tick*this.gravityFactor;this.vel.x=this.getNewVelocity(this.vel.x,this.accel.x,this.friction.x,this.maxVel.x);this.vel.y=this.getNewVelocity(this.vel.y,this.accel.y,this.friction.y,this.maxVel.y);var mx=this.vel.x*ig.system.tick;var my=this.vel.y*ig.system.tick;var res=ig.game.collisionMap.trace(this.pos.x,this.pos.y,mx,my,this.size.x,this.size.y,this.collidetiles);this.handleMovementTrace(res);if(this.currentAnim){this.currentAnim.update();}},getNewVelocity:function(vel,accel,friction,max){if(accel){return(vel+accel*ig.system.tick).limit(-max,max);}
else if(friction){var delta=friction*ig.system.tick;if(vel-delta>0){return vel-delta;}
else if(vel+delta<0){return vel+delta;}
else{return 0;}}
return vel.limit(-max,max);},handleMovementTrace:function(res){this.standing=false;if(res.collision.y){if(this.bounciness>0&&Math.abs(this.vel.y)>this.minBounceVelocity){this.vel.y*=-this.bounciness;}
else{if(this.vel.y>0){this.standing=true;}
this.vel.y=0;}}
if(res.collision.x){if(this.bounciness>0&&Math.abs(this.vel.x)>this.minBounceVelocity){this.vel.x*=-this.bounciness;}
else{this.vel.x=0;}}
this.pos=res.pos;},draw:function(){if(this.currentAnim){this.currentAnim.draw(Math.round(this.pos.x)-this.offset.x-ig.game.screen.x,Math.round(this.pos.y)-this.offset.y-ig.game.screen.y);}},kill:function(){ig.game.removeEntity(this);},receiveDamage:function(amount,from){this.health-=amount;if(this.health<=0){this.kill();}},touches:function(other){return!(this.pos.x>other.pos.x+other.size.x||this.pos.x+this.size.x<other.pos.x||this.pos.y>other.pos.y+other.size.y||this.pos.y+this.size.y<other.pos.y);},distanceTo:function(other){var xd=(this.pos.x+this.size.x/2)-(other.pos.x+other.size.x/2);var yd=(this.pos.y+this.size.y/2)-(other.pos.y+other.size.y/2);return Math.sqrt(xd*xd+yd*yd);},angleTo:function(other){return Math.atan2((other.pos.y+other.size.y/2)-(this.pos.y+this.size.y/2),(other.pos.x+other.size.x/2)-(this.pos.x+this.size.x/2));},check:function(other){},collideWith:function(other,axis){}});ig.Entity._lastId=0;ig.Entity.COLLIDES={NEVER:0,LITE:1,PASSIVE:2,ACTIVE:4,FIXED:8};ig.Entity.TYPE={NONE:0,A:1,B:2,BOTH:3};ig.Entity.checkPair=function(a,b){if(a.checkAgainst&b.type){a.check(b);}
if(b.checkAgainst&a.type){b.check(a);}
if(a.collides==ig.Entity.COLLIDES.FIXED&&b.collides==ig.Entity.COLLIDES.FIXED){a.pos.x=a.last.x;a.pos.y=a.last.y;b.pos.x=b.last.x;b.pos.y=b.last.y;}else if(a.collides&&b.collides&&a.collides+b.collides>ig.Entity.COLLIDES.ACTIVE){ig.Entity.solveCollision(a,b);}};ig.Entity.solveCollision=function(a,b){var weak=null;if(a.collides==ig.Entity.COLLIDES.LITE||b.collides==ig.Entity.COLLIDES.FIXED){weak=a;}
else if(b.collides==ig.Entity.COLLIDES.LITE||a.collides==ig.Entity.COLLIDES.FIXED){weak=b;}
if(a.last.x+a.size.x>b.last.x&&a.last.x<b.last.x+b.size.x){if(a.last.y<b.last.y){ig.Entity.seperateOnYAxis(a,b,weak);}
else{ig.Entity.seperateOnYAxis(b,a,weak);}
a.collideWith(b,'y');b.collideWith(a,'y');}
else if(a.last.y+a.size.y>b.last.y&&a.last.y<b.last.y+b.size.y){if(a.last.x<b.last.x){ig.Entity.seperateOnXAxis(a,b,weak);}
else{ig.Entity.seperateOnXAxis(b,a,weak);}
a.collideWith(b,'x');b.collideWith(a,'x');}};ig.Entity.seperateOnXAxis=function(left,right,weak){var nudge=(left.pos.x+left.size.x-right.pos.x);if(weak){var strong=left===weak?right:left;weak.vel.x=-weak.vel.x*weak.bounciness+strong.vel.x;var resWeak=ig.game.collisionMap.trace(weak.pos.x,weak.pos.y,weak==left?-nudge:nudge,0,weak.size.x,weak.size.y,weak.collidetiles);weak.pos.x=resWeak.pos.x;}
else{var v2=(left.vel.x-right.vel.x)/2;left.vel.x=-v2;right.vel.x=v2;var resLeft=ig.game.collisionMap.trace(left.pos.x,left.pos.y,-nudge/2,0,left.size.x,left.size.y,left.collidetiles);left.pos.x=Math.floor(resLeft.pos.x);var resRight=ig.game.collisionMap.trace(right.pos.x,right.pos.y,nudge/2,0,right.size.x,right.size.y,left.collidetiles);right.pos.x=Math.ceil(resRight.pos.x);}};ig.Entity.seperateOnYAxis=function(top,bottom,weak){var nudge=(top.pos.y+top.size.y-bottom.pos.y);if(weak){var strong=top===weak?bottom:top;weak.vel.y=-weak.vel.y*weak.bounciness+strong.vel.y;var nudgeX=0;if(weak==top&&Math.abs(weak.vel.y-strong.vel.y)<weak.minBounceVelocity){weak.standing=true;nudgeX=strong.vel.x*ig.system.tick;}
var resWeak=ig.game.collisionMap.trace(weak.pos.x,weak.pos.y,nudgeX,weak==top?-nudge:nudge,weak.size.x,weak.size.y,weak.collidetiles);weak.pos.y=resWeak.pos.y;weak.pos.x=resWeak.pos.x;}
else if(ig.game.gravity&&(bottom.standing||top.vel.y>0)){var resTop=ig.game.collisionMap.trace(top.pos.x,top.pos.y,0,-(top.pos.y+top.size.y-bottom.pos.y),top.size.x,top.size.y,top.collidetiles);top.pos.y=resTop.pos.y;if(top.bounciness>0&&top.vel.y>top.minBounceVelocity){top.vel.y*=-top.bounciness;}
else{top.standing=true;top.vel.y=0;}}
else{var v2=(top.vel.y-bottom.vel.y)/2;top.vel.y=-v2;bottom.vel.y=v2;var nudgeX=bottom.vel.x*ig.system.tick;var resTop=ig.game.collisionMap.trace(top.pos.x,top.pos.y,nudgeX,-nudge/2,top.size.x,top.size.y,top.collidetiles);top.pos.y=resTop.pos.y;var resBottom=ig.game.collisionMap.trace(bottom.pos.x,bottom.pos.y,0,nudge/2,bottom.size.x,bottom.size.y,bottom.collidetiles);bottom.pos.y=resBottom.pos.y;}};});

// lib/impact/map.js
ig.baked=true;ig.module('impact.map').defines(function(){ig.Map=ig.Class.extend({tilesize:8,width:1,height:1,data:[[]],init:function(tilesize,data){this.tilesize=tilesize;this.data=data;this.height=data.length;this.width=data[0].length;},getTile:function(x,y){var tx=Math.floor(x/this.tilesize);var ty=Math.floor(y/this.tilesize);if((tx>=0&&tx<this.width)&&(ty>=0&&ty<this.height)){return this.data[ty][tx];}
else{return 0;}},setTile:function(x,y,tile){var tx=Math.floor(x/this.tilesize);var ty=Math.floor(y/this.tilesize);if((tx>=0&&tx<this.width)&&(ty>=0&&ty<this.height)){this.data[ty][tx]=tile;}}});});

// lib/impact/collision-map.js
ig.baked=true;ig.module('impact.collision-map').requires('impact.map').defines(function(){ig.CollisionMap=ig.Map.extend({collidetiles:[false,true,true,true],init:function(tilesize,data){this.parent(tilesize,data);},trace:function(x,y,vx,vy,objectWidth,objectHeight,collidetiles){if(!collidetiles){collidetiles=this.collidetiles;}
var res={collision:{x:false,y:false},pos:{x:x,y:y},tile:{x:0,y:0}};var steps=Math.ceil(Math.max(Math.abs(vx),Math.abs(vy))/this.tilesize);if(steps>1){var sx=vx/steps;var sy=vy/steps;for(var i=0;i<steps&&(sx||sy);i++){this._traceStep(res,x,y,sx,sy,objectWidth,objectHeight,collidetiles);x=res.pos.x;y=res.pos.y;if(res.collision.x){sx=0;}
if(res.collision.y){sy=0;}}}
else{this._traceStep(res,x,y,vx,vy,objectWidth,objectHeight,collidetiles);}
return res;},_traceStep:function(res,x,y,vx,vy,width,height,collidetiles){res.pos.x+=vx;res.pos.y+=vy;if(vx){var pxOffsetX=(vx>0?width:0);var tileOffsetX=(vx<0?this.tilesize:0);var firstTileY=Math.floor(y/this.tilesize);var lastTileY=Math.ceil((y+height)/this.tilesize);var tileX=Math.floor((x+vx+pxOffsetX)/this.tilesize);if(lastTileY>=0&&firstTileY<this.height&&tileX>=0&&tileX<this.width){for(var tileY=firstTileY;tileY<lastTileY;tileY++){var tY=tileY.limit(0,this.data.length-1);var tX=tileX.limit(0,this.data[tY].length-1);var t=this.data[tY][tX];if(collidetiles[t]){res.collision.x=true;res.tile.x=t;res.pos.x=tileX*this.tilesize-pxOffsetX+tileOffsetX;break;}}}}
if(vy){var pxOffsetY=(vy>0?height:0);var tileOffsetY=(vy<0?this.tilesize:0);var firstTileX=Math.floor(res.pos.x/this.tilesize);var lastTileX=Math.ceil((res.pos.x+width)/this.tilesize);var tileY=Math.floor((y+vy+pxOffsetY)/this.tilesize);if(lastTileX>=0&&firstTileX<this.width&&tileY>=0&&tileY<this.height){for(var tileX=firstTileX;tileX<lastTileX;tileX++){var tY=tileY.limit(0,this.data.length-1);var tX=tileX.limit(0,this.data[tY].length-1);var t=this.data[tY][tX];if(collidetiles[t]){res.collision.y=true;res.tile.y=t;res.pos.y=tileY*this.tilesize-pxOffsetY+tileOffsetY;break;}}}}}});ig.CollisionMap.TYPE={NONE:0,BOTH:1,A:2,B:3};ig.CollisionMap.staticNoCollision={trace:function(x,y,vx,vy){return{collision:{x:false,y:false},pos:{x:x+vx,y:y+vy},tile:{x:0,y:0}};}};});

// lib/impact/background-map.js
ig.baked=true;ig.module('impact.background-map').requires('impact.map','impact.image').defines(function(){ig.BackgroundMap=ig.Map.extend({tiles:null,scroll:{x:0,y:0},distance:1,repeat:false,tilesetName:'',foreground:false,enabled:true,preRender:false,preRenderedChunks:null,chunkSize:512,debugChunks:false,anims:{},init:function(tilesize,data,tileset){this.parent(tilesize,data);this.setTileset(tileset);},setTileset:function(tileset){this.tilesetName=tileset instanceof ig.Image?tileset.path:tileset;this.tiles=new ig.Image(this.tilesetName);this.preRenderedChunks=null;},setScreenPos:function(x,y){this.scroll.x=x/this.distance;this.scroll.y=y/this.distance;},preRenderMapToChunks:function(){var totalWidth=this.width*this.tilesize*ig.system.scale,totalHeight=this.height*this.tilesize*ig.system.scale;var chunkCols=Math.ceil(totalWidth/this.chunkSize),chunkRows=Math.ceil(totalHeight/this.chunkSize);this.preRenderedChunks=[];for(var y=0;y<chunkRows;y++){this.preRenderedChunks[y]=[];for(var x=0;x<chunkCols;x++){var chunkWidth=(x==chunkCols-1)?totalWidth-x*this.chunkSize:this.chunkSize;var chunkHeight=(y==chunkRows-1)?totalHeight-y*this.chunkSize:this.chunkSize;this.preRenderedChunks[y][x]=this.preRenderChunk(x,y,chunkWidth,chunkHeight);}}},preRenderChunk:function(cx,cy,w,h){var tw=w/this.tilesize/ig.system.scale+1;th=h/this.tilesize/ig.system.scale+1;var nx=(cx*this.chunkSize/ig.system.scale)%this.tilesize,ny=(cy*this.chunkSize/ig.system.scale)%this.tilesize;var tx=Math.floor(cx*this.chunkSize/this.tilesize/ig.system.scale),ty=Math.floor(cy*this.chunkSize/this.tilesize/ig.system.scale);var chunk=ig.$new('canvas');chunk.width=w;chunk.height=h;var oldContext=ig.system.context;ig.system.context=chunk.getContext("2d");for(var x=0;x<tw;x++){for(var y=0;y<th;y++){if(x+tx<this.width&&y+ty<this.height){var tile=this.data[y+ty][x+tx];if(tile){this.tiles.drawTile(x*this.tilesize-nx,y*this.tilesize-ny,tile-1,this.tilesize);}}}}
ig.system.context=oldContext;return chunk;},draw:function(){if(!this.tiles.loaded||!this.enabled){return;}
if(this.preRender){this.drawPreRendered();}
else{this.drawTiled();}},drawPreRendered:function(){if(!this.preRenderedChunks){this.preRenderMapToChunks();}
var dx=ig.system.getDrawPos(this.scroll.x),dy=ig.system.getDrawPos(this.scroll.y);if(this.repeat){dx%=this.width*this.tilesize*ig.system.scale;dy%=this.height*this.tilesize*ig.system.scale;}
var minChunkX=Math.max(Math.floor(dx/this.chunkSize),0),minChunkY=Math.max(Math.floor(dy/this.chunkSize),0),maxChunkX=Math.ceil((dx+ig.system.realWidth)/this.chunkSize),maxChunkY=Math.ceil((dy+ig.system.realHeight)/this.chunkSize),maxRealChunkX=this.preRenderedChunks[0].length,maxRealChunkY=this.preRenderedChunks.length;if(!this.repeat){maxChunkX=Math.min(maxChunkX,maxRealChunkX);maxChunkY=Math.min(maxChunkY,maxRealChunkY);}
var nudgeY=0;for(var cy=minChunkY;cy<maxChunkY;cy++){var nudgeX=0;for(var cx=minChunkX;cx<maxChunkX;cx++){var chunk=this.preRenderedChunks[cy%maxRealChunkY][cx%maxRealChunkX];var x=-dx+cx*this.chunkSize-nudgeX;var y=-dy+cy*this.chunkSize-nudgeY;ig.system.context.drawImage(chunk,x,y);ig.Image.drawCount++;if(this.debugChunks){ig.system.context.strokeStyle='#f0f';ig.system.context.strokeRect(x,y,this.chunkSize,this.chunkSize);}
if(this.repeat&&chunk.width<this.chunkSize&&x+chunk.width<ig.system.realWidth){nudgeX=this.chunkSize-chunk.width;maxChunkX++;}}
if(this.repeat&&chunk.height<this.chunkSize&&y+chunk.height<ig.system.realHeight){nudgeY=this.chunkSize-chunk.height;maxChunkY++;}}},drawTiled:function(){var tile=0,anim=null,tileOffsetX=(this.scroll.x/this.tilesize).toInt(),tileOffsetY=(this.scroll.y/this.tilesize).toInt(),pxOffsetX=this.scroll.x%this.tilesize,pxOffsetY=this.scroll.y%this.tilesize,pxMinX=-pxOffsetX-this.tilesize,pxMinY=-pxOffsetY-this.tilesize,pxMaxX=ig.system.width+this.tilesize-pxOffsetX,pxMaxY=ig.system.height+this.tilesize-pxOffsetY;for(var mapY=-1,pxY=pxMinY;pxY<pxMaxY;mapY++,pxY+=this.tilesize){var tileY=mapY+tileOffsetY;if(tileY>=this.height||tileY<0){if(!this.repeat){continue;}
tileY=tileY>0?tileY%this.height:((tileY+1)%this.height)+this.height-1;}
for(var mapX=-1,pxX=pxMinX;pxX<pxMaxX;mapX++,pxX+=this.tilesize){var tileX=mapX+tileOffsetX;if(tileX>=this.width||tileX<0){if(!this.repeat){continue;}
tileX=tileX>0?tileX%this.width:((tileX+1)%this.width)+this.width-1;}
if((tile=this.data[tileY][tileX])){if((anim=this.anims[tile-1])){anim.draw(pxX,pxY);}
else{this.tiles.drawTile(pxX,pxY,tile-1,this.tilesize);}}}}}});});

// lib/impact/game.js
ig.baked=true;ig.module('impact.game').requires('impact.impact','impact.entity','impact.collision-map','impact.background-map').defines(function(){ig.Game=ig.Class.extend({clearColor:'#000000',gravity:0,screen:{x:0,y:0},entities:[],namedEntities:{},collisionMap:ig.CollisionMap.staticNoCollision,backgroundMaps:[],backgroundAnims:{},cellSize:64,_deferredKill:[],_levelToLoad:null,_doSortEntities:false,staticInstantiate:function(){ig.game=this;return null;},loadLevel:function(data){this.screen={x:0,y:0};this.entities=[];this.namedEntities={};for(var i=0;i<data.entities.length;i++){var ent=data.entities[i];this.spawnEntity(ent.type,ent.x,ent.y,ent.settings);}
this.sortEntities();this.collisionMap=ig.CollisionMap.staticNoCollision;this.backgroundMaps=[];for(var i=0;i<data.layer.length;i++){var ld=data.layer[i];if(ld.name=='collision'){this.collisionMap=new ig.CollisionMap(ld.tilesize,ld.data);}
else{var newMap=new ig.BackgroundMap(ld.tilesize,ld.data,ld.tilesetName);newMap.name=ld.name;newMap.anims=this.backgroundAnims[ld.tilesetName]||{};newMap.repeat=ld.repeat;newMap.distance=ld.distance;newMap.foreground=!!ld.foreground;this.backgroundMaps.push(newMap);}}},loadLevelDeferred:function(data){this._levelToLoad=data;},getEntityByName:function(name){return this.namedEntities[name];},getEntitiesByType:function(type){var entityClass=typeof(type)==='string'?ig.global[type]:type;var a=[];for(var i=0;i<this.entities.length;i++){var ent=this.entities[i];if(ent instanceof entityClass&&!ent._killed){a.push(ent);}}
return a;},spawnEntity:function(type,x,y,settings){var entityClass=typeof(type)==='string'?ig.global[type]:type;if(!entityClass){throw("Can't spawn entity of type "+type);}
var ent=new(entityClass)(x,y,settings||{});this.entities.push(ent);if(ent.name){this.namedEntities[ent.name]=ent;}
return ent;},sortEntities:function(){this.entities.sort(function(a,b){return a.zIndex-b.zIndex;});},sortEntitiesDeferred:function(){this._doSortEntities=true;},removeEntity:function(ent){if(ent.name){delete this.namedEntities[ent.name];}
ent._killed=true;ent.checkAgainst=ig.Entity.TYPE.NONE;ent.collides=ig.Entity.COLLIDES.NEVER;this._deferredKill.push(ent);},run:function(){this.update();this.draw();},update:function(){if(this._levelToLoad){this.loadLevel(this._levelToLoad);this._levelToLoad=null;}
if(this._doSortEntities){this.sortEntities();this._doSortEntities=false;}
for(var i=0;i<this.entities.length;i++){var ent=this.entities[i];if(!ent._killed){ent.update();}}
this.checkEntities();for(var i=0;i<this._deferredKill.length;i++){this.entities.erase(this._deferredKill[i]);}
this._deferredKill=[];for(var tileset in this.backgroundAnims){var anims=this.backgroundAnims[tileset];for(var a in anims){anims[a].update();}}},draw:function(){if(this.clearColor){ig.system.clear(this.clearColor);}
var mapIndex;for(mapIndex=0;mapIndex<this.backgroundMaps.length;mapIndex++){var map=this.backgroundMaps[mapIndex];if(map.foreground){break;}
map.setScreenPos(this.screen.x,this.screen.y);map.draw();}
for(var i=0;i<this.entities.length;i++){this.entities[i].draw();}
for(mapIndex;mapIndex<this.backgroundMaps.length;mapIndex++){var map=this.backgroundMaps[mapIndex];map.setScreenPos(this.screen.x,this.screen.y);map.draw();}},checkEntities:function(){var hash={};for(var e=0;e<this.entities.length;e++){var entity=this.entities[e];if(e.type==ig.Entity.TYPE.NONE&&e.checkAgainst==ig.Entity.TYPE.NONE&&e.collides==ig.Entity.COLLIDES.NEVER){continue;}
var checked={},xmin=Math.floor(entity.pos.x/this.cellSize),ymin=Math.floor(entity.pos.y/this.cellSize),xmax=Math.floor((entity.pos.x+entity.size.x)/this.cellSize)+1,ymax=Math.floor((entity.pos.y+entity.size.y)/this.cellSize)+1;for(var x=xmin;x<xmax;x++){for(var y=ymin;y<ymax;y++){if(!hash[x]){hash[x]={};hash[x][y]=[entity];}
else if(!hash[x][y]){hash[x][y]=[entity];}
else{var cell=hash[x][y];for(var c=0;c<cell.length;c++){if(entity.touches(cell[c])&&!checked[cell[c].id]){checked[cell[c].id]=true;ig.Entity.checkPair(entity,cell[c]);}}
cell.push(entity);}}}}}});});ig.goddjs={fps:60,width:768,height:480,scale:1};

// lib/plugins/impact/impact-splash-loader.js
ig.baked=true;ig.module('plugins.impact.impact-splash-loader').requires('impact.loader').defines(function(){ig.ImpactSplashLoader=ig.Loader.extend({endTime:0,fadeToBlackTime:200,fadeToGameTime:800,logoWidth:340,logoHeight:120,end:function(){this.parent();this.endTime=Date.now();ig.system.setDelegate(this);},run:function(){var t=Date.now()-this.endTime;var alpha=1;if(t<this.fadeToBlackTime){this.draw();alpha=t.map(0,this.fadeToBlackTime,0,1);}
else if(t<this.fadeToGameTime){ig.game.run();alpha=t.map(this.fadeToBlackTime,this.fadeToGameTime,1,0);}
else{ig.system.setDelegate(ig.game);return;}
ig.system.context.fillStyle='rgba(0,0,0,'+alpha+')';ig.system.context.fillRect(0,0,ig.system.realWidth,ig.system.realHeight);},draw:function(){this._drawStatus+=(this.status-this._drawStatus)/5;var ctx=ig.system.context;var w=ig.system.realWidth;var h=ig.system.realHeight;var scale=w/this.logoWidth/3;var center=(w-this.logoWidth*scale)/2;ctx.fillStyle='rgba(0,0,0,0.8)';ctx.fillRect(0,0,w,h);ctx.fillStyle='rgb(128,128,128)';ctx.textAlign='right';ctx.font='10px Arial';ctx.fillText('http://impactjs.com',w-10,h-10);ctx.textAlign='left';ctx.save();ctx.translate(center,h/2.5);ctx.scale(scale,scale);ctx.lineWidth='3';ctx.strokeStyle='rgb(255,255,255)';ctx.strokeRect(25,this.logoHeight+40,300,20);ctx.fillStyle='rgb(255,255,255)';ctx.fillRect(30,this.logoHeight+45,290*this._drawStatus,10);this.drawPaths('rgb(255,255,255)',ig.ImpactSplashLoader.PATHS_IMPACT);var comet=ig.ImpactSplashLoader.PATHS_COMET;comet[5][0]=3-Math.random()*this._drawStatus*7;comet[5][1]=3-Math.random()*this._drawStatus*10;comet[7][0]=29.5-Math.random()*this._drawStatus*10;comet[7][1]=40.4-Math.random()*this._drawStatus*10;comet[9][0]=16.1-Math.random()*this._drawStatus*10;comet[9][1]=36.1-Math.random()*this._drawStatus*5;ctx.translate(-Math.random()*this._drawStatus*7,-Math.random()*this._drawStatus*5);this.drawPaths('rgb(243,120,31)',comet);ctx.restore();},drawPaths:function(color,paths){var ctx=ig.system.context;ctx.fillStyle=color;for(var i=0;i<paths.length;i+=2){ctx[ig.ImpactSplashLoader.OPS[paths[i]]].apply(ctx,paths[i+1]);}}});ig.ImpactSplashLoader.OPS={bp:'beginPath',cp:'closePath',f:'fill',m:'moveTo',l:'lineTo',bc:'bezierCurveTo'};ig.ImpactSplashLoader.PATHS_COMET=['bp',[],'m',[85.1,58.3],'l',[0.0,0.0],'l',[29.5,40.4],'l',[16.1,36.1],'l',[54.6,91.6],'bc',[65.2,106.1,83.4,106.7,93.8,95.7],'bc',[103.9,84.9,98.6,67.6,85.1,58.3],'cp',[],'m',[76.0,94.3],'bc',[68.5,94.3,62.5,88.2,62.5,80.8],'bc',[62.5,73.3,68.5,67.2,76.0,67.2],'bc',[83.5,67.2,89.6,73.3,89.6,80.8],'bc',[89.6,88.2,83.5,94.3,76.0,94.3],'cp',[],'f',[]];ig.ImpactSplashLoader.PATHS_IMPACT=['bp',[],'m',[128.8,98.7],'l',[114.3,98.7],'l',[114.3,26.3],'l',[128.8,26.3],'l',[128.8,98.7],'cp',[],'f',[],'bp',[],'m',[159.2,70.1],'l',[163.6,26.3],'l',[184.6,26.3],'l',[184.6,98.7],'l',[170.3,98.7],'l',[170.3,51.2],'l',[164.8,98.7],'l',[151.2,98.7],'l',[145.7,50.7],'l',[145.7,98.7],'l',[134.1,98.7],'l',[134.1,26.3],'l',[155.0,26.3],'l',[159.2,70.1],'cp',[],'f',[],'bp',[],'m',[204.3,98.7],'l',[189.8,98.7],'l',[189.8,26.3],'l',[211.0,26.3],'bc',[220.0,26.3,224.5,30.7,224.5,39.7],'l',[224.5,60.1],'bc',[224.5,69.1,220.0,73.6,211.0,73.6],'l',[204.3,73.6],'l',[204.3,98.7],'cp',[],'m',[207.4,38.7],'l',[204.3,38.7],'l',[204.3,61.2],'l',[207.4,61.2],'bc',[209.1,61.2,210.0,60.3,210.0,58.6],'l',[210.0,41.3],'bc',[210.0,39.5,209.1,38.7,207.4,38.7],'cp',[],'f',[],'bp',[],'m',[262.7,98.7],'l',[248.3,98.7],'l',[247.1,88.2],'l',[238.0,88.2],'l',[237.0,98.7],'l',[223.8,98.7],'l',[233.4,26.3],'l',[253.1,26.3],'l',[262.7,98.7],'cp',[],'m',[239.4,75.5],'l',[245.9,75.5],'l',[242.6,43.9],'l',[239.4,75.5],'cp',[],'f',[],'bp',[],'m',[300.9,66.7],'l',[300.9,85.9],'bc',[300.9,94.9,296.4,99.4,287.4,99.4],'l',[278.5,99.4],'bc',[269.5,99.4,265.1,94.9,265.1,85.9],'l',[265.1,39.1],'bc',[265.1,30.1,269.5,25.6,278.5,25.6],'l',[287.2,25.6],'bc',[296.2,25.6,300.7,30.1,300.7,39.1],'l',[300.7,56.1],'l',[286.4,56.1],'l',[286.4,40.7],'bc',[286.4,38.9,285.6,38.1,283.8,38.1],'l',[282.1,38.1],'bc',[280.4,38.1,279.5,38.9,279.5,40.7],'l',[279.5,84.3],'bc',[279.5,86.1,280.4,86.9,282.1,86.9],'l',[284.0,86.9],'bc',[285.8,86.9,286.6,86.1,286.6,84.3],'l',[286.6,66.7],'l',[300.9,66.7],'cp',[],'f',[],'bp',[],'m',[312.5,98.7],'l',[312.5,39.2],'l',[303.7,39.2],'l',[303.7,26.3],'l',[335.8,26.3],'l',[335.8,39.2],'l',[327.0,39.2],'l',[327.0,98.7],'l',[312.5,98.7],'cp',[],'f',[]];});

// lib/game/entities/special/projectile.js
ig.baked=true;ig.module('game.entities.special.projectile').requires('impact.entity').defines(function(){EntityProjectile=ig.Entity.extend({size:{x:4,y:4},offset:{x:2,y:2},damage:10,name:'projectile',etype:'projectile',gravityFactor:.4,maxVel:{x:200,y:200},bounciness:.6,shootsound:'shoot',lifetime:-1,lift:.35,type:ig.Entity.TYPE.NONE,checkAgainst:ig.Entity.TYPE.BOTH,collides:ig.Entity.COLLIDES.PASSIVE,playerkill:false,animSheet:null,bouncemax:1,bounceCounter:0,projdievel:10,killer:'',zIndex:38,canfizzle:false,canexplode:false,fizzlesound:'fizzle',explodesound:'explode',team:'bloo',collidetiles:[false,true,false,false],init:function(x,y,settings){this.parent(x,y,settings);if(settings.damage){this.damage=settings.damage;}
this.setVel(settings);if(ig.game.backpack.projcount>ig.game.backpack.projcountmax){this.fizzleOut('timer');this.kill('toomany');return;}else{ig.game.backpack.projcount++;}
ig.game.mySounds.play(this.shootsound);if(this.lifetime>0){this.timer=new ig.Timer(this.lifetime);}},setVel:function(settings){var yfactor=MyGame.GVault.world=="flat"?0:this.lift;if(settings.facing=="up"){this.vel.x=0;this.vel.y=-1*this.maxVel.y;}else if(settings.facing=="down"){this.vel.x=0;this.vel.y=this.maxVel.y;}else if(settings.facing=="left"){this.vel.x=-1*this.maxVel.x;this.vel.y=-1*this.maxVel.y*yfactor;}else if(settings.facing=="right"){this.vel.x=this.maxVel.x;this.vel.y=-1*this.maxVel.y*yfactor;}},handleMovementTrace:function(res){this.parent(res);if(res.collision.x||res.collision.y){this.bounceCounter++;if(this.bounceCounter>this.bouncemax){ig.game.backpack.projcount--;if(ig.game.backpack.projcount<0){ig.game.backpack.projcount=0;}
this.kill('hitwall',res);}}},check:function(other){if(!this.playerkill&&typeof(other.name)!='undefined'&&other.name=='player'){ig.game.backpack.projcount--;this.kill('hitnohurt',other);return;}
other.receiveDamage(this.damage,this);ig.game.backpack.projcount--;this.kill('hit',other);},update:function(){if(this.lifetime>0&&this.timer.delta()>0){ig.game.backpack.projcount--;this.kill('timedout');return;}
this.parent();var mustdie=false;if(this.bounceCounter>0&&Math.abs(this.vel.x)<=this.projdievel&&Math.abs(this.vel.y)<=this.projdievel){ig.game.backpack.projcount--;this.kill('slowed');return;}
if(this.pos.x>ig.game.mapWidth){}else if(this.pos.x<0){}else if(this.pos.y>ig.game.mapHeight){}else if(this.pos.y<0){}else{return;}
ig.game.backpack.projcount--;this.kill('outofbounds');},projFizzle:function(how){if(!this.canfizzle){return;}
ig.game.mySounds.play(this.fizzlesound);var x=this.pos.x+this.size.x/2;var y=this.pos.y+this.size.y/2;ig.game.spawnEntity(EntityExplosion,x,y,{fizzle:true});ig.game.sortEntitiesDeferred();},projExplode:function(other){if(!this.canexplode){return;}
ig.game.mySounds.play(this.explodesound);var x=this.pos.x+this.size.x/2;var y=this.pos.y+this.size.y/2;ig.game.spawnEntity(EntityExplosion,x,y,{fizzle:false});ig.game.sortEntitiesDeferred();},kill:function(how,other){if(how=='hit'){this.projExplode(other);}else if(how=='outofbounds'||how=='toomany'){}else if(how=='slowed'||how=='timedout'||how=='hitwall'){this.projFizzle(how);}else if(how=='hitnohurt'){}
this.parent();}});});

// lib/game/entities/special/bullet.js
ig.baked=true;ig.module('game.entities.special.bullet').requires('game.entities.special.projectile').defines(function(){EntityBullet=EntityProjectile.extend({name:'bullet',size:{x:4,y:4},offset:{x:2,y:2},damage:10,gravityFactor:.4,maxVel:{x:200,y:200},bounciness:.6,lifetime:2.5,animSheet:new ig.AnimationSheet('media/sprites/slime-grenade.png',8,8),bounceCounter:0,projdievel:10,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.2,[0,1]);}});});

// lib/game/entities/special/bomb.js
ig.baked=true;ig.module('game.entities.special.bomb').requires('game.entities.special.projectile').defines(function(){EntityBomb=EntityProjectile.extend({name:'bomb',size:{x:22,y:28},offset:{x:6,y:10},damage:50,gravityFactor:.6,maxVel:{x:0,y:0},zIndex:20,bounciness:.8,lifetime:4,lift:2,canfizzle:true,canexplode:true,animSheet:new ig.AnimationSheet('media/sprites/bomb.png',42,48),bounceCounter:0,projdievel:10,playerkill:true,bouncemax:1,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.1,[0,1,2,3]);},});});

// lib/game/entities/special/fireball.js
ig.baked=true;ig.module('game.entities.special.fireball').requires('game.entities.special.projectile').defines(function(){EntityFireball=EntityProjectile.extend({name:'fireball',size:{x:28,y:28},offset:{x:10,y:10},damage:30,gravityFactor:.6,maxVel:{x:120,y:120},bounciness:0,lifetime:2,lift:2,animSheet:new ig.AnimationSheet('media/sprites/fireball.png',48,48),bounceCounter:0,projdievel:10,playerkill:true,bouncemax:1,init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('idle',0.1,[0,1,2,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4]);}});});

// lib/game/entities/special/rocket.js
ig.baked=true;ig.module('game.entities.special.rocket').requires('game.entities.special.projectile').defines(function(){EntityRocket=EntityProjectile.extend({name:'rocket',size:{x:24,y:10},offset:{x:0,y:7},damage:30,gravityFactor:0,maxVel:{x:150,y:150},bounciness:0,lifetime:-1,lift:0,canfizzle:true,animSheet:new ig.AnimationSheet('media/sprites/rocket.png',24,24),bounceCounter:0,projdievel:10,playerkill:true,bouncemax:0,framerate:.2,curAnimFace:'none',animDirections:[],flip:false,canfizzle:true,canexplode:true,shootsound:'shoot2',init:function(x,y,settings){this.parent(x,y,settings);if(this._kill){return;}
anim=this.addAnim('right',this.framerate*.95,[0,1]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[2,3]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[4,5]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[6,7]);this.postAnimSet(anim,'up');this.setAnim(this.facing);},postAnimSet:function(anim,direction){anim.flip=this.flip;if(typeof(ig.game.myLib)!="undefined"){anim.angle=ig.game.myLib.degrees2radians(this.angle);}
if(typeof(direction)!='undefined'){this.animDirections[direction]=anim;}},setAnim:function(direction){if(this.curAnimFace==direction){return;}
if(typeof(this.animDirections[direction])!='undefined'){this.currentAnim=this.animDirections[direction];this.currentAnim.alpha=this.alpha;this.curAnimFace=direction;}}});});

// lib/game/entities/special/creature.js
ig.baked=true;ig.module('game.entities.special.creature').requires('impact.entity').defines(function(){EntityCreature=ig.Entity.extend({name:'creature',etype:'creature',size:{x:40,y:40},maxVel:{x:60,y:60},speed:20,speeddelta:10,friction:{x:0,y:0},job:'creature',type:ig.Entity.TYPE.B,checkAgainst:ig.Entity.TYPE.BOTH,collides:ig.Entity.COLLIDES.PASSIVE,zIndex:21,health:10,gold:10,damage:10,xp:100,secrets:0,missions:0,kills:1,fly:false,keyid:'',keyuses:1,movement:'standard',dropsound:'',flip:{x:false,y:false},angle:0,framerate:.15,facing:'start',curAnimFace:'',onusekey:'',allfouranims:false,animDirections:[],hurtsound:'hit',currentTarget:0,target:null,targetobj:null,targets:[],_targets:[],paceDistance:{min:{x:5,y:5},max:{x:48,y:48}},animSheet:null,marchright:true,marchdown:true,march:'updown',movenext:{start:'',bump:'',hurt:'chase',near:'',lost:'',returned:'wait',collide:''},moveact:{start:'',bump:'',hurt:'',kill:'',near:'',lost:'',returned:'',collide:''},speedinc:{start:0,bump:0,hurt:0,near:0,lost:0,returned:0,collide:0},otag:{bumpa:'',bumpb:'',hurt:'',near:'',lost:'',returned:'',collide:'',kill:''},sfx:{bumpa:'',bumpb:'',hurt:'',lost:'',returned:''},hurtby:{bomb:1,rocket:1,fireball:1,bullet:1,lava:1,slime:0},waitTimer:null,canFire:true,wait:1,gtag:{},chase:{who:'player',name:'',type:'',trget:null},chaseby:{who:[]},waitTimerB:null,canFireB:true,waitB:1,droptype:'sfx',startpoint:{x:-1,y:-1},distance:{lost:9999,near:-1},gravityFactor:1,attachto:{name:'',ent:null,where:'overlay'},dupeClass:'',settings:{},init:function(x,y,settings){if(settings.check){delete settings.check;}
this.settings=settings;var settingscopy=ig.copy(settings);if(settings.speed=='random'){this.speed=this.speed+this.speeddelta*(Math.random()-.5);delete settingscopy.speed;}
if(settings.checks){this.checkAgainst=ig.Entity.TYPE[settings.checks.toUpperCase()]||ig.Entity.TYPE.A;delete settingscopy.checks;}
this.parent(x,y,settingscopy);if(!ig.global.wm){ig.game.myLocal.jobSettings(this);}
if(!ig.global.wm&&this.movenext.start!=''&&this.isValidMovement(this.movenext.start)){this.movement=this.movenext.start;}else{this.movenext.start=this.movement;}
if(this.movement=='march'){if(this.facing=='down'){this.marchdown=true;this.march='updown';}else if(this.facing=='up'){this.marchdown=false;this.march='updown';}else if(this.facing=='right'){this.marchright=true;this.march='leftright';}else if(this.facing=='left'){this.marchright=false;this.march='leftright';}}
this.startpoint.x=x;this.startpoint.y=y;this.framerate=this.framerate-(Math.random()*this.framerate*.5);if(this.animSheet!=null){this.offset.x=Math.floor((this.animSheet.width-this.size.x)/2);this.offset.y=Math.floor((this.animSheet.height-this.size.y)/2);}
if(this.movement=='standard'){this.vel.x=this.maxVel.x-Math.random()*2*this.maxVel.x;this.vel.y=this.maxVel.y-Math.random()*2*this.maxVel.y;}
this.targets=ig.ksort(this.target);this.waitTimer=new ig.Timer();this.waitTimerB=new ig.Timer();},postInit:function(){this.setMovementType(this.movement);for(attrib in this.gtag){ig.game.myOTags.registerForOTag(this,attrib);}
if(this.attachto.name!=''){var ent=ig.game.getEntityByName(this.attachto.name);if(ent){this.attachto.ent=ent;}}
if(typeof(this.speedinc)!='undefined'){this.speedinc.start=this.speed;}},postAnimSet:function(anim,direction){anim.flip=this.flip;if(typeof(ig.game.myLib)!="undefined"){anim.angle=ig.game.myLib.degrees2radians(this.angle);}
if(typeof(direction)!='undefined'){this.animDirections[direction]=anim;}},update:function(){this.doMovement();this.noLeaveMap();this.parent();},isValidMovement:function(which){if(ig.game.myLib.StrPos("^standard^chase^path^march^wait^pace^follow^solid^","^"+which+"^")){return true;}else{return false;}},setMovementType:function(which){if(!this.isValidMovement(which)){which=this.movenext.start;}
this.movement=which;if(this.movement=='standard'){}else if(this.movement=='chase'){if(!this.setChaseTarget()){if(this.movenext.start=='chase'){this.movement='standard';}else{this.movement=this.movenext.start;}}}else if(this.movement=='follow'){}else if(this.movement=='march'){}else if(this.movement=='wait'){}else if(this.movement=='pace'){}else if(this.movement=='path'){}else if(this.movement=='home'){}else{}
if(this.movement=='chase'){this.collides=ig.Entity.COLLIDES.ACTIVE;}else{this.collides=ig.Entity.COLLIDES.PASSIVE;}},setChaseTarget:function(){if(this.chase.trget!=null){return true;}else if(this.chase.who=='player'){return true;}else if(this.chase.who=='byname'&&this.chase.name!=''){var ent=ig.game.getEntityByName(this.chase.name);if(this==ent){return false;}
this.chase.trget=ent;}else if(this.chase.who=='bytype'&&this.chase.type!=''){var enttype=this.chase.type;if(!ig.game.myLib.StrPos(enttype,'entity')){this.chase.type="Entity"+enttype.substr(0,1).toUpperCase()+enttype.substr(1,enttype.length);}
var entsoftype=ig.game.getEntitiesByType(this.chase.type);if(entsoftype.length==0){return false;}
var entsminusme=[];for(var i=0;i<entsoftype.length;i++){var ent=entsoftype[i];if(this==ent){continue;}
if(ent._killed){continue;}
entsminusme.push(ent);}
if(entsminusme.length==0){return false;}
var ents=[];var saftycount=0;var allowedcurrentchaser=-1;while(ents.length==0&&saftycount<10){saftycount++;allowedcurrentchaser++;for(var i=0;i<entsminusme.length;i++){var ent=entsminusme[i];if(ent.chaseby.who.length<=allowedcurrentchaser){ents.push(ent);}}}
if(ents.length==0){ents=entsminusme;}
var ndx=Math.floor(ents.length*Math.random());ndx=ndx.limit(0,ents.length-1);var enttochase=ents[ndx];this.chase.trget=enttochase;enttochase.chaseby.who.push(this);}else{return false;}
return true;},doMovement:function(){this.checkDistance();if(this.attachto.ent!=null){this.attachtoMovement();}else if(this.movement=='standard'){this.standardMovement();}else if(this.movement=='chase'){this.chaseMovement();}else if(this.movement=='follow'){this.chaseMovement();}else if(this.movement=='march'){this.marchMovement();}else if(this.movement=='wait'){this.waitMovement();}else if(this.movement=='pace'){this.paceMovement();}else if(this.movement=='path'){this.pathMovement();}else if(this.movement=='home'){this.homeMovement();}else{return;}
this.setFacing();this.setAnim(this.facing);},noLeaveMap:function(){if(this.pos.x>=ig.game.mapWidth-this.size.x/2){this.pos.x=ig.game.mapWidth-this.size.x-2*this.offset.x;}else if(this.pos.x<0){this.pos.x=0;}
if(this.pos.y>=ig.game.mapHeight-this.size.y/2){this.pos.y=ig.game.mapHeight-this.size.y-2*this.offset.y;}else if(this.pos.y<0){this.pos.y=0;}},checkDistance:function(){if(this.distance.lost==9999&&this.distance.near==-1){return;}
if(typeof(ig.game.player)=='undefined'||ig.game.player==null){return;}
var distance=this.distanceTo(ig.game.player);var attrib;if(distance>this.distance.lost){if(this.movement==this.movenext.start){return;}
attrib='lost';ig.game.myOTags.broadcastOTag(this,this.otag['lost'],{why:'lost',distance:distance});}else if(distance<this.distance.near){attrib='near';ig.game.myOTags.broadcastOTag(this,this.otag['near'],{why:'near',distance:distance});}else{return;}
if(typeof(this.movenext[attrib])!='undefined'&&this.movenext[attrib]!=''&&this.movenext[attrib]!='none'){this.setMovementType(this.movenext[attrib]);}else{this.setMovementType(this.movenext['start']);}
if(this.movement=='wait'){this.vel.x=0;this.vel.y=0;}},attachtoMovement:function(){this.pos.x=this.attachto.ent.pos.x;this.pos.y=this.attachto.ent.pos.y;if(this.attachto.where=='overlay'){this.pos.x=this.attachto.ent.pos.x-this.attachto.ent.offset.x+this.offset.x;this.pos.y=this.attachto.ent.pos.y-this.attachto.ent.offset.y+this.offset.y;}else if(this.attachto.where=='up'){this.pos.y-=this.size.y+2*this.offset.y;this.pos.x+=this.offset.x;}else if(this.attachto.where=='down'){this.pos.y+=this.attachto.ent.size.y+2*this.attachto.ent.offset.y;this.pos.x+=this.offset.x;}else if(this.attachto.where=='left'){this.pos.x-=this.size.x+2*this.offset.x;this.pos.y+=this.offset.y;}else if(this.attachto.where=='right'){this.pos.x+=this.attachto.ent.size.x+2*this.attachto.ent.offset.x;this.pos.y+=this.offset.y;}},standardMovement:function(){if(this.pos.x>=ig.game.mapWidth-this.size.x/2){this.vel.x=-1*this.vel.x;}else if(this.pos.x<0){this.vel.x=-1*this.vel.x;}
if(this.pos.y>=ig.game.mapHeight-this.size.y/2){this.vel.y=-1*this.vel.y;}else if(this.pos.y<0){this.vel.y=-1*this.vel.y;}
if(this.vel.x==0){this.vel.x=this.maxVel.x-Math.random()*2*this.maxVel.x;}
if(this.vel.y==0){this.vel.y=this.maxVel.y-Math.random()*2*this.maxVel.y;}},chaseMovement:function(){var angle;if(this.chase.who=='player'){angle=this.angleTo(ig.game.player);}else if(this.chase.trget==null){return;}else{angle=this.angleTo(this.chase.trget);}
this.vel.x=Math.cos(angle)*this.speed;this.vel.y=Math.sin(angle)*this.speed;this.parent();},homeMovement:function(){var distance=this.distanceTo({pos:this.startpoint,size:this.size});if(distance<this.size.x/2){ig.game.myOTags.broadcastOTag(this,this.otag['returned'],{why:'returned',distance:distance});if(typeof(this.movenext['returned'])!='undefined'&&this.movenext['returned']!=''&&this.movenext['returned']!='none'){this.setMovementType(this.movenext['returned']);}else{this.setMovementType(this.movenext['start']);}
if(this.movement=='wait'){this.vel.x=0;this.vel.y=0;}
return;}
var angle=this.angleTo({pos:this.startpoint,size:this.size});this.vel.x=Math.cos(angle)*this.speed;this.vel.y=Math.sin(angle)*this.speed;this.parent();},waitMovement:function(){this.parent();},paceMovement:function(){if(this.startpoint.x==-1){this.startpoint.x=this.pos.x;this.startpoint.y=this.pos.y;var targ=ig.game.spawnEntity(EntityVoid,this.pos.x,this.pos.y);this._targets.push(targ);for(var i=0;i<5;i++){var sx=this.size.x/2+this.paceDistance.min.x+Math.random()*(this.paceDistance.max.x-this.paceDistance.min.x);var sy=this.size.y/2+this.paceDistance.min.y+Math.random()*(this.paceDistance.max.y-this.paceDistance.min.y);var pm=-1;if(Math.random()>.5){pm=1;}
sx=this.pos.x+pm*sx;sy=this.pos.y+pm*sy;targ=ig.game.spawnEntity(EntityVoid,sx,sy);this._targets.push(targ);}}
this.pathMovement();},marchMovement:function(){if(this.pos.x>=ig.game.mapWidth-this.size.x-2*this.offset.x){this.marchright=false;}else if(this.pos.x<0){this.marchright=true;}
if(this.pos.y>=ig.game.mapHeight-this.size.y-2*this.offset.y){this.marchdown=false;}else if(this.pos.y<0){this.marchdown=true;}
if(this.march=='updown'){this.vel.y=(this.marchdown)?this.speed:-1*this.speed;this.vel.x=0;}else{this.vel.x=(this.marchright)?this.speed:-1*this.speed;this.vel.y=0;}},marchMovementold:function(){if(this.march=='updown'){if(this.marchdown){if(ig.game.collisionMap.getTile(this.pos.x+this.size.x-1,this.pos.y+this.size.y+4)){this.marchdown=false;}}else{if(ig.game.collisionMap.getTile(this.pos.x+this.size.x-1,this.pos.y-4)){this.marchdown=true;}}
this.vel.y=(this.marchdown)?this.speed:-1*this.speed;}else{if(this.marchright){if(ig.game.collisionMap.getTile(this.pos.x+this.size.x+4,this.pos.y+this.size.y-1)){this.marchright=false;}}else{if(ig.game.collisionMap.getTile(this.pos.x-4,this.pos.y+this.size.y-1)){this.marchright=true;}}
this.vel.x=(this.marchright)?this.speed:-1*this.speed;}},pathMovement:function(){if(this._targets.length==0&&this.targets.length==0){this.setMovementType('standard');return;}
if(this._targets.length==0){for(var i=0;i<this.targets.length;i++){var targ=ig.game.getEntityByName(this.targets[i]);if(typeof(targ)!='undefined'&&targ!=null){this._targets.push(targ);}}
if(this._targets.length==0){this.setMovementType('standard');return;}}
if(this.targetobj==null){this.targetobj=this._targets[this.currentTarget];}
var angle=this.angleTo(this.targetobj);this.vel.x=Math.cos(angle)*this.speed*1.4;this.vel.y=Math.sin(angle)*this.speed*1.4;if(MyGame.GVault.world=='side'&&!this.fly&&gravityFactor!=0){this.vel.y=(this.vel.y>0)?this.vel.y:0;}
var distance=this.distanceTo(this.targetobj);if(distance<this.size.x/2){this.currentTarget++;if(this.currentTarget>=this._targets.length){this.currentTarget=0;}
this.targetobj=this._targets[this.currentTarget];}},setFacing:function(){if(Math.abs(this.vel.y)>=Math.abs(this.vel.x)){if(this.vel.y>=0){this.facing="down";}else{this.facing="up";}}else{if(this.vel.x>=0){this.facing="right";}else{this.facing="left";}}},setAnim:function(direction){if(this.curAnimFace==direction){return;}
if(typeof(this.animDirections[direction])!='undefined'){this.currentAnim=this.animDirections[direction];this.currentAnim.alpha=this.alpha;this.curAnimFace=direction;}},handleMovementTrace:function(res){if(!res.collision.x&&!res.collision.y){this.parent(res);return;}
if(this.movement=='march'&&res.collision.y){this.marchdown=!this.marchdown;}else if(this.movement=='march'&&res.collision.x){this.marchright=!this.marchright;}
this.parent(res);ig.game.myOTags.broadcastOTag(this,this.otag['collide'],{why:'collide',res:res});},check:function(other){if(other.type==ig.Entity.TYPE.A){if(this.canFire&&this.waitTimer.delta()>=0){this.checkA(other);if(this.wait==-1){this.canFire=false;}else{this.waitTimer.set(this.wait);}}}
if(other.type==ig.Entity.TYPE.B){if(this.canFireB&&this.waitTimerB.delta()>=0){this.checkB(other);if(this.waitB==-1){this.canFireB=false;}else{this.waitTimerB.set(this.waitB);}}}},checkA:function(other){if(other.intransit){return;}
ig.game.myOTags.broadcastOTag(this,this.otag['bumpa'],{why:'bumpa',other:other});if(this.movenext.bump!=''&&this.movenext.bump!=this.movement){this.setMovementType(this.movenext.bump);}
if(typeof(other.receiveDamage)=='function'){other.receiveDamage(this.damage,this);}},checkB:function(other){ig.game.myOTags.broadcastOTag(this,this.otag['bumpb'],{why:'bumpb',other:other});this.checkBMarch(other);},checkBMarch:function(other){if(this.movement!='march'){return;}
if(other.etype=='void'){}else if(typeof(other.movement)!='undefined'&&other.movement=='march'){}else{return;}
if(other.etype=='void'){if(!other.turn.active){return;}}else{if(this.march=='updown'){this.marchdown=!this.marchdown;return;}else{this.marchright=!this.marchright;return;}}
if(other.turn.id!=''&&other.turn.id!=this.name){return;}
var newdir='';if(this.march=='updown'&&this.marchdown){newdir=other.turn.up.to;}else if(this.march=='updown'&&!this.marchdown){newdir=other.turn.down.to;}else if(this.march=='leftright'&&this.marchright){newdir=other.turn.left.to;}else if(this.march=='leftright'&&!this.marchright){newdir=other.turn.right.to;}
if(newdir==''||newdir=='none'){return;}else if(newdir=='up'){this.march='updown';this.marchdown=false;}else if(newdir=='down'){this.march='updown';this.marchdown=true;}else if(newdir=='left'){this.march='leftright';this.marchright=false;}else if(newdir=='right'){this.march='leftright';this.marchright=true;}
this.vel.x=0;this.vel.y=0;},receiveDamage:function(amount,from){if(this.health==9999){return;}
if(typeof(this.hurtby[from.name])!='undefined'){amount=this.hurtby[from.name]*amount;}
if(amount==0){return;}
if(this.movenext.hurt!=''&&this.movenext.hurt!=this.movement&&this.movenext.hurt!='none'){this.setMovementType(this.movenext.hurt);}
ig.game.myOTags.broadcastOTag(this,this.otag['hurt'],{why:'hurt',amount:amount,from:from});this.parent(amount,from);if(this.health<=0){if(from.killer=='player'){ig.game.backpack.incGoalsDone({kills:this.kills,xp:this.xp});}
ig.game.mySFX.iamDying(this,amount,from);}else{if(this.moveact['hurt']!=''){var mafunc=ig.game.mySFX.getMoveact(this.moveact['hurt']);if(mafunc!=null){mafunc(this,ig.game.player,{amount:amount,from:from});}}
ig.game.mySFX.iamHit(this,amount,from);}},receiveTag:function(bywho,tag,settings){if(typeof(this.gtag[tag])=='undefined'){return;}
if(this.gtag[tag]=='kill'){this.kill();}else if(ig.game.myLib.StrPos("^swap^double^","^"+this.gtag[tag]+"^")){var mafunc=ig.game.mySFX.getMoveact(this.gtag[tag]);if(mafunc!=null){mafunc(this,ig.game.player,{tag:tag});}}else if(ig.game.myLib.StrPos("^standard^chase^path^march^wait^pace^follow^","^"+this.gtag[tag]+"^")){this.setMovementType(this.gtag[tag]);}},dupeMe:function(settings){if(this.dupeClass!=''){ig.game.spawnEntity(this.dupeClass,this.pos.x,this.pos.y,this.settings);}},kill:function(){if(this.moveact['kill']!=''){var mafunc=ig.game.mySFX.getMoveact(this.moveact['kill']);if(mafunc!=null){mafunc(this,ig.game.player,{});}}
ig.game.myOTags.broadcastOTag(this,this.otag['kill'],{why:'kill'});ig.game.myDropper.makeDrop(this,{gold:this.gold,keyid:this.keyid,keyuses:this.keyuses,missions:this.missions,secrets:this.secrets});this.parent();this._killed=true;for(var i=0;i<this.chaseby.who.length;i++){var ent=this.chaseby.who[i];ent.chase.trget=null;ent.setChaseTarget();}}});});

// lib/game/entities/baglady.js
ig.baked=true;ig.module('game.entities.baglady').requires('game.entities.special.creature').defines(function(){EntityBaglady=EntityCreature.extend({name:'baglady',dupeClass:'EntityBaglady',size:{x:62,y:96},maxVel:{x:120,y:120},zIndex:21,health:40,gold:300,damage:0,xp:-500,fly:false,allfouranims:true,framerate:.2,hurtsound:'agony7',animSheet:new ig.AnimationSheet('media/sprites/baglady.png',62,96),init:function(x,y,settings){this.parent(x,y,settings);var anim;anim=this.addAnim('right',this.framerate*.95,[0,1,2,3]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[4,5,6,7]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[8,9,10,11]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[12,13,14,15]);this.postAnimSet(anim,'up');}});});

// lib/game/entities/bagladyette.js
ig.baked=true;ig.module('game.entities.bagladyette').requires('game.entities.special.creature').defines(function(){EntityBagladyette=EntityCreature.extend({name:'baglady',dupeClass:'EntityBagladyette',size:{x:12,y:20},maxVel:{x:20,y:20},keyid:'participant',keyuses:1,onusekey:'kill',zIndex:26,health:100,xp:-300,gold:150,damage:0,droptype:'none',movement:'wait',movenext:{start:'',bump:'follow',hurt:'chase',near:'',lost:'home',returned:'wait'},allfouranims:true,framerate:.2,hurtsound:'agony7',collides:ig.Entity.COLLIDES.ACTIVE,animSheet:new ig.AnimationSheet('media/sprites/bagladyette.png',32,50),distance:{lost:192,near:-1},wait:5,init:function(x,y,settings){this.movenext.lost="home";this.parent(x,y,settings);var anim;anim=this.addAnim('right',this.framerate*.95,[0,1,2,3]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[4,5,6,7]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[8,9,10,11]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[12,13,14,15]);this.postAnimSet(anim,'up');}});});

// lib/game/entities/clown.js
ig.baked=true;ig.module('game.entities.clown').requires('game.entities.special.creature').defines(function(){EntityClown=EntityCreature.extend({name:'clown',dupeClass:'EntityClown',size:{x:40,y:40},maxVel:{x:60,y:60},zIndex:26,health:30,gold:150,damage:100,framerate:0.1,animSheet:new ig.AnimationSheet('media/sprites/clown60x52.png',60,52),init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim('main',this.framerate,[0,1,2,3,4,5,6,7,8]);this.postAnimSet(anim);}});});

// lib/game/entities/patch.js
ig.baked=true;ig.module('game.entities.patch').requires('impact.entity').defines(function(){EntityPatch=ig.Entity.extend({_wmScalable:true,_wmDrawBox:true,_wmBoxColor:'rgba(128, 128, 255, 0.7)',name:'patch',etype:'patch',size:{x:24,y:24},offset:{x:0,y:0},type:ig.Entity.TYPE.NONE,gtag:{},otag:{kill:''},checkAgainst:ig.Entity.TYPE.NONE,collides:ig.Entity.COLLIDES.NEVER,zIndex:11,alpha:1,animSheet:null,animSeries:[0],framerate:1,frames:1,filename:'noimage.png',width:48,height:48,gravityFactor:0,flip:{x:false,y:false},angle:0,init:function(x,y,settings){this.parent(x,y,settings);},postInit:function(){this.initAnim();for(attrib in this.gtag){ig.game.myOTags.registerForOTag(this,attrib);}},initAnim:function(){if(this.animSheet!=null){return;}
if(this.filename!=""&&!ig.game.myLib.StrPos(this.filename,".")){this.filename=this.filename+".png";}
var path=ig.game.mySprites.getSpritePath(this.filename);var img=ig.game.mySprites.getSprite(this.filename);if(img!=null){var w=img.width;var h=img.height;if(this.width>w){this.width=w;}
if(this.height>h){this.height=h;}}
this.animSheet=new ig.AnimationSheet(path,this.width,this.height);this.offset.x=Math.floor((this.animSheet.width-this.size.x)/2);this.offset.y=Math.floor((this.animSheet.height-this.size.y)/2);var max=parseInt(this.frames);var count=1;while(count<max){this.animSeries.push(count);count++;}
var anim=this.addAnim('idle',this.framerate,this.animSeries);this.postAnimSet(anim);this.currentAnim.alpha=this.alpha;},postAnimSet:function(anim,direction){anim.flip=this.flip;if(typeof(ig.game.myLib)!="undefined"){anim.angle=ig.game.myLib.degrees2radians(this.angle);}},draw:function(){if(this.id==12){var xx=1;}
this.parent();},update:function(){this.parent();},kill:function(){ig.game.myOTags.broadcastOTag(this,this.otag['kill'],{why:'kill'});this.parent();},receiveTag:function(bywho,tag,settings){if(typeof(this.gtag[tag])=='undefined'){return;}
if(this.gtag[tag]=='kill'){this.kill();}}});});

// lib/game/entities/lock.js
ig.baked=true;ig.module('game.entities.lock').requires('game.entities.patch').defines(function(){EntityLock=EntityPatch.extend({name:'lock',etype:'lock',checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.FIXED,keyid:'',keyuses:1,keysound:"lock03",opensound:"door2opn",failsound:'klang01',failmessage:'',closemessage:'',message:'',waitforkey:'no',displaytime:2.5,open:false,canFire:true,wait:4,waitTimer:null,gravityFactor:0,onepic:'no',gold:0,missions:0,secrets:0,xp:0,states:{open:{checkAgainst:ig.Entity.TYPE.NONE,collides:ig.Entity.COLLIDES.NEVER},closed:{checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.FIXED}},init:function(x,y,settings){ig.merge(this.otag,{unlock:'',lock:'',fail:''});var settingscopy=ig.copy(settings);if(typeof(settings.keyid)!='undefined'&&settings.keyid!=''){this.open=false;}
if(typeof(settings.open)!='undefined'&&!ig.global.wm){this.open=ig.game.myLib.str2boolean(settings.open);delete settingscopy.open;}
if(this.open){this.setOpen(true);}else{this.setClosed(true);}
this.parent(x,y,settingscopy);this.waitTimer=new ig.Timer();},initAnim:function(){this.parent();var anim;if(ig.game.myLib.str2boolean(this.onepic)){anim=this.addAnim('idle',this.framerate,[0]);this.postAnimSet(anim);this.currentAnim=this.anims.idle;}else{anim=this.addAnim('closed',this.framerate,[0]);this.postAnimSet(anim);anim=this.addAnim('open',this.framerate,[1]);this.postAnimSet(anim);if(this.open){this.currentAnim=this.anims.open;}else{this.currentAnim=this.anims.closed;}}
this.currentAnim.alpha=this.alpha;},check:function(other){if(this.canFire&&this.waitTimer.delta()>=0){if(other.type==ig.Entity.TYPE.A){this.checkA(other);}if(other.type==ig.Entity.TYPE.B){this.checkB(other);}if(other.type==ig.Entity.TYPE.BOTH){this.checkA(other);this.checkB(other);}else{}
if(this.open){this.canFire=false;}else{this.waitTimer.set(this.wait);}}},setOpen:function(frominit){this.checkAgainst=this.states.open.checkAgainst;this.collides=this.states.open.collides;this.open=true;if(this.onepic!='true'&&this.onepic!='yes'){this.currentAnim=this.anims.open;}
if(frominit){return;}
ig.game.myOTags.broadcastOTag(this,this.otag['unlock'],{why:'unlock'});ig.game.backpack.incGoalsDone({gold:this.gold,xp:this.xp,missions:this.missions,secrets:this.secrets});ig.game.mySounds.play(this.opensound);if(this.message!=''){ig.game.spawnEntity(EntityBlackboard,0,0,{message:this.message,waitforkey:this.waitforkey,displaytime:this.displaytime});}},setClosed:function(frominit){this.checkAgainst=this.states.closed.checkAgainst;this.collides=this.states.closed.collides;this.open=false;if(this.onepic!='true'&&this.onepic!='yes'){this.currentAnim=this.anims.closed;}
if(frominit){return;}
ig.game.myOTags.broadcastOTag(this,this.otag['lock'],{why:'lock'});ig.game.mySounds.play(this.closesound);if(this.closemessage!=''){ig.game.spawnEntity(EntityBlackboard,0,0,{message:this.closemessage,waitforkey:this.waitforkey,displaytime:this.displaytime});}},checkA:function(other){if(!ig.game.backpack.useKey(this,this.keysound)){ig.game.myOTags.broadcastOTag(this,this.otag['fail'],{why:'fail',other:other});ig.game.mySounds.play(this.failsound);if(this.failmessage!=''){ig.game.spawnEntity(EntityBlackboard,0,0,{message:this.failmessage,waitforkey:this.waitforkey,displaytime:this.displaytime});}}else{this.setOpen();}},checkB:function(other){if(this.keyid==other.keyid&&this.keyuses<=other.keyuses){this.checkAgainst=ig.Entity.TYPE.NONE;this.collides=ig.Entity.COLLIDES.NEVER;this.open=true;ig.game.myOTags.broadcastOTag(this,this.otag['unlock'],{why:'unlock',other:other});this.changeAnim();ig.game.mySounds.play(this.opensound);ig.game.backpack.incGoalsDone({gold:this.gold,xp:this.xp,missions:this.missions,secrets:this.secrets});this.wait=-1;if(typeof(other.onusekey)!='undefined'&&other.onusekey=='kill'){other.killedby='lock';other.kill();}
if(this.message!=''){ig.game.spawnEntity(EntityBlackboard,0,0,{message:this.message,waitforkey:this.waitforkey,displaytime:this.displaytime});}}},changeAnim:function(){if(this.onepic!='true'&&this.onepic!='yes'){this.currentAnim=this.anims.open;}},receiveTag:function(bywho,tag,settings){if(typeof(this.gtag[tag])=='undefined'){return;}
this.parent(bywho,tag,settings);if(this.gtag[tag]=='lock'){this.setClosed(false);}else if(this.gtag[tag]=='unlock'){this.setOpen(false);}}});});

// lib/game/entities/crowd.js
ig.baked=true;ig.module('game.entities.crowd').requires('game.entities.lock').defines(function(){EntityCrowd=EntityLock.extend({name:'crowd',size:{x:84,y:96},_wmScalable:false,_wmDrawBox:true,_wmBoxColor:'rgba(255, 255, 0, 0.5)',zIndex:11,keyid:'participant',keyuses:1,filename:'crowd1.png',width:84,height:96,keysound:"pop01",opensound:"zwoo",onepic:'no',failsound:'silence',checkAgainst:ig.Entity.TYPE.B,collides:ig.Entity.COLLIDES.NEVER,states:{open:{checkAgainst:ig.Entity.TYPE.NONE,collides:ig.Entity.COLLIDES.NEVER},closed:{checkAgainst:ig.Entity.TYPE.B,collides:ig.Entity.COLLIDES.NEVER}},missions:1,init:function(x,y,settings){this.parent(x,y,settings);this.checkAgainst=ig.Entity.TYPE.B;this.collides=ig.Entity.COLLIDES.NEVER;}});});

// lib/game/entities/feets.js
ig.baked=true;ig.module('game.entities.feets').requires('game.entities.special.creature').defines(function(){EntityFeets=EntityCreature.extend({name:'feets',dupeClass:'EntityFeets',size:{x:34,y:24},offset:{x:15,y:6},maxVel:{x:120,y:120},zIndex:21,health:20,gold:0,damage:20,fly:false,allfouranims:true,animSheet:new ig.AnimationSheet('media/sprites/feets.png',64,36),init:function(x,y,settings){this.parent(x,y,settings);anim=this.addAnim('right',this.framerate*.95,[0,1,2,3]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[4,5,6,7]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[8,9,10,11]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[12,13,14,15]);this.postAnimSet(anim,'up');}});});

// lib/game/entities/dagogo.js
ig.baked=true;ig.module('game.entities.dagogo').requires('game.entities.special.creature').defines(function(){EntityDagogo=EntityCreature.extend({name:'dagogo',dupeClass:'EntityDagogo',size:{x:64,y:44},offset:{x:16,y:20},maxVel:{x:35,y:35},zIndex:26,health:30,gold:150,damage:50,speed:30,allfouranims:true,framerate:0.2,hurtby:{bomb:1,rocket:0,fireball:0,bullet:0,lava:1,slime:0},animSheet:new ig.AnimationSheet('media/sprites/dagogo.png',96,64),init:function(x,y,settings){this.parent(x,y,settings);this.setFourAnims(2);},setFourAnims:function(framesperanim){var framesright;var framesleft;var framesdown;var framesup;for(var i=0;i<framesperanim;i++){framesright.push[i];framesleft.push[framesperanim+i];framesdown.push[2*framesperanim+i];framesup.push[3*framesperanim+i];}
var anim;anim=this.addAnim('right',this.framerate*.95,framesright);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,framesleft);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,framesdown);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,framesup);this.postAnimSet(anim,'up');}});});

// lib/game/entities/dagogoette.js
ig.baked=true;ig.module('game.entities.dagogoette').requires('game.entities.special.creature').defines(function(){EntityDagogoette=EntityCreature.extend({name:'dagogoette',dupeClass:'EntityDagogoette',size:{x:48,y:30},offset:{x:12,y:18},maxVel:{x:45,y:45},zIndex:26,health:30,gold:150,damage:20,speed:35,allfouranims:true,framerate:0.1,hurtby:{bomb:1,rocket:0,fireball:0,bullet:0,lava:1,slime:0},animSheet:new ig.AnimationSheet('media/sprites/dagogoette.png',72,48),init:function(x,y,settings){this.parent(x,y,settings);var anim;anim=this.addAnim('right',this.framerate*.95,[0,1]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[2,3]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[4,5]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[6,7]);this.postAnimSet(anim,'up');}});});

// lib/game/entities/sal.js
ig.baked=true;ig.module('game.entities.sal').requires('game.entities.special.creature').defines(function(){EntitySal=EntityCreature.extend({name:'sal',dupeClass:'EntitySal',size:{x:40,y:60},maxVel:{x:60,y:60},keyid:'participant',keyuses:1,onusekey:'kill',zIndex:26,health:100,gold:150,damage:0,framerate:0.16,droptype:'none',movement:'wait',movenext:{bump:'follow',hurt:'chase'},animSheet:new ig.AnimationSheet('media/sprites/sal.png',68,86),init:function(x,y,settings){this.parent(x,y,settings);var anim;anim=this.addAnim('chase',this.framerate,[0,1,2,3,4,5,6,7,8,9,10,11,12,13]);this.postAnimSet(anim);anim=this.addAnim('wait',this.framerate,[2,13,8,13]);this.postAnimSet(anim);}});});

// lib/game/entities/penguin.js
ig.baked=true;ig.module('game.entities.penguin').requires('game.entities.special.creature').defines(function(){EntityPenguin=EntityCreature.extend({name:'penguin',dupeClass:'EntityPenguin',size:{x:44,y:70},maxVel:{x:90,y:90},zIndex:21,health:20,gold:1,damage:20,settings:{},fly:false,animSheet:new ig.AnimationSheet('media/sprites/penguin.png',64,74),init:function(x,y,settings){this.myDupeClass=EntityPenguin;this.parent(x,y,settings);var anim=this.addAnim('idle',this.framerate,[0,1,2,3]);this.postAnimSet(anim);}});});

// lib/game/entities/rtag.js
ig.baked=true;ig.module('game.entities.rtag').requires('impact.entity').defines(function(){EntityRtag=ig.Entity.extend({name:"rtag",etype:'rtag',size:{x:42,y:42},_wmScalable:true,_wmDrawBox:true,_wmBoxColor:'rgba(208, 208, 208, 0.5)',otag:{bumpa:'',bumpb:'',enter:'',leave:''},wait:.1,damage:0,health:0,waitTimer:null,canFire:true,type:ig.Entity.TYPE.NONE,checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.NEVER,checkby:{name:'',type:''},gravityFactor:0,gold:0,xp:0,missions:0,secrets:0,playerin:false,attachto:{name:'',ent:null,where:'over'},init:function(x,y,settings){if(settings.check){delete settings.check;}
var settingscopy=ig.copy(settings);if(settings.checks){this.checkAgainst=ig.Entity.TYPE[settings.checks.toUpperCase()]||ig.Entity.TYPE.A;delete settingscopy.checks;}
this.parent(x,y,settingscopy);this.waitTimer=new ig.Timer();},postInit:function(){if(this.attachto.name!=''){var ent=ig.game.getEntityByName(this.attachto.name);if(ent){this.attachto.ent=ent;this.zIndex=Math.max(this.zIndex,this.attachto.ent.zIndex+1);}}},update:function(){this.playerInRegion();if(typeof(this.attachto.ent)=='undefined'||this.attachto.ent==null||this.attachto.ent._killed){this.attachto.ent=null;}
if(this.attachto.ent!=null){this.pos.x=this.attachto.ent.pos.x;this.pos.y=this.attachto.ent.pos.y;if(this.attachto.where=='over'){}else if(this.attachto.where=='up'){this.pos.y-=this.size.y+2*this.offset.y;this.pos.x+=this.offset.x;}else if(this.attachto.where=='down'){this.pos.y+=this.attachto.ent.size.y+2*this.attachto.ent.offset.y;this.pos.x+=this.offset.x;}else if(this.attachto.where=='left'){this.pos.x-=this.size.x+2*this.offset.x;this.pos.y+=this.offset.y;}else if(this.attachto.where=='right'){this.pos.x+=this.attachto.ent.size.x+2*this.attachto.ent.offset.x;this.pos.y+=this.offset.y;}}
this.parent();},playerInRegion:function(){if(isNaN(this.pos.x)){return false;}
var px=ig.game.player.pos.x+ig.game.player.size.x/2;var py=ig.game.player.pos.y+ig.game.player.size.y/2;if(px<this.pos.x||px>this.pos.x+this.size.x||py<this.pos.y||py>this.pos.y+this.size.y){if(this.playerin){ig.game.myOTags.broadcastOTag(this,this.otag['leave'],{why:'leave'});}
this.playerin=false;return false;}
if(!this.playerin){ig.game.myOTags.broadcastOTag(this,this.otag['enter'],{why:'enter'});}
this.playerin=true;return true;},passCheckBy:function(other){if(this.checkby.name!=''){if(this.checkby.name!=other.name){return false;}}
if(this.checkby.type!=''){var enttype=this.checkby.type;if(!ig.game.myLib.StrPos(type,'entity')){enttype="Entity"+enttype.substr(0,1).toUpperCase()+enttype.substr(1,enttype.length);}
if(typeof(ig.global[enttype])!='undefined'){var entityClass=ig.global[enttype];if(!(other instanceof entityClass)){return false;}}}
return true;},check:function(other){if(!this.passCheckBy(other)){return;}
if(other.type==ig.Entity.TYPE.A){this.checkA(other);}else if(other.type==ig.Entity.TYPE.B){this.checkB(other);}else if(other.type==ig.Entity.TYPE.BOTH){this.checkA(other);this.checkB(other);}},checkA:function(other){if(this.canFire&&this.waitTimer.delta()>=0){if(other.type==ig.Entity.TYPE.A){ig.game.myOTags.broadcastOTag(this,this.otag['bumpa'],{why:'bumpa',other:other});}
if(this.damage!=0&&typeof(other.receiveDamage)=='function'){ig.game.backpack.incGoalsDone({gold:this.gold,xp:this.xp,missions:this.missions,secrets:this.secrets});other.receiveDamage(this.damage,this);}
if(this.health!=0&&typeof(other.receiveHealth)=='function'){ig.game.backpack.incGoalsDone({gold:this.gold,xp:this.xp,missions:this.missions,secrets:this.secrets});other.receiveHealth(this.health,this);}
if(this.wait==-1){this.canFire=false;}
else{this.waitTimer.set(this.wait);}}},checkB:function(other){if(this.canFire&&this.waitTimer.delta()>=0){if(other.type==ig.Entity.TYPE.B){ig.game.myOTags.broadcastOTag(this,this.otag['bumpb'],{why:'bumpb',other:other});}
if(this.damage!=0&&typeof(other.receiveDamage)=='function'){other.receiveDamage(this.damage,this);}
if(this.health!=0&&typeof(other.receiveHealth)=='function'){other.receiveHealth(this.health,this);}
if(this.wait==-1){this.canFire=false;}
else{this.waitTimer.set(this.wait);}}}});});

// lib/game/entities/fountain.js
ig.baked=true;ig.module('game.entities.fountain').requires('game.entities.rtag').defines(function(){EntityFountain=EntityRtag.extend({name:"heal",size:{x:24,y:30},offset:{x:20,y:4},wait:.08,health:1,damage:0,color:'blue',framerate:.2,animSheet:new ig.AnimationSheet("media/sprites/fountain2.png",64,38),init:function(x,y,settings){this.parent(x,y,settings);var anim;if(this.color=="blue"){anim=this.addAnim("blue",this.framerate,[0,1,2,3]);}else if(this.color=="yellow"){anim=this.addAnim("yellow",this.framerate,[4,5,6,7]);}else if(this.color=="red"){anim=this.addAnim("red",this.framerate,[8,9,10,11]);}else if(this.color=="green"){anim=this.addAnim("green",this.framerate,[12,13,14,15]);}else{anim=this.addAnim("blue",this.framerate,[0,1,2,3]);}
this.currentAnim=anim;},check:function(other){this.parent(other);}});});

// lib/game/entities/founttall.js
ig.baked=true;ig.module('game.entities.founttall').requires('game.entities.rtag').defines(function(){EntityFounttall=EntityRtag.extend({name:"heal",size:{x:46,y:66},offset:{x:20,y:30},wait:.08,health:1,framerate:.2,animSheet:new ig.AnimationSheet("media/sprites/fountain.png",96,96),init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim("idle",this.framerate,[0,1,2,3]);this.currentAnim=anim;},check:function(other){this.parent(other);}});});

// lib/game/entities/hole.js
ig.baked=true;ig.module('game.entities.hole').requires('impact.entity').defines(function(){EntityHole=ig.Entity.extend({name:"hole",size:{x:14,y:14},offset:{x:17,y:17},target:null,shape:'ragged',damage:9999,type:ig.Entity.TYPE.NONE,checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.NEVER,animSheet:new ig.AnimationSheet("media/sprites/hole.png",48,48),gravityFactor:0,init:function(x,y,settings){this.addAnim("ragged",1,[0]);this.addAnim("square",1,[1]);this.addAnim("circle",1,[2]);this.addAnim("ns",1,[3]);this.addAnim("ew",1,[4]);this.parent(x,y,settings);if(settings.shape){if(settings.shape=="square"){this.currentAnim=this.anims.square;}else if(settings.shape=="circle"){this.currentAnim=this.anims.circle;}else if(settings.shape=="ns"){this.currentAnim=this.anims.ns;}else if(settings.shape=="ew"){this.currentAnim=this.anims.ew;}else{this.currentAnim=this.anims.ragged;}}},check:function(other){if(other.fly===true){return;}
other.receiveDamage(this.damage,this);},update:function(){}});});

// lib/game/entities/trench.js
ig.baked=true;ig.module('game.entities.trench').requires('game.entities.rtag').defines(function(){EntityTrench=EntityRtag.extend({name:"trench",_wmBoxColor:'rgba(0, 0, 0, 0.5)',checkAgainst:ig.Entity.TYPE.BOTH,wait:1,damage:9999,init:function(x,y,settings){this.parent(x,y,settings);},check:function(other){if(other.fly===true){return;}
this.parent(other);},checkA:function(other){this.parent(other);},checkB:function(other){return;var res={collision:{x:false,y:false},pos:{x:this.pos.x,y:this.pos.y},tile:{x:0,y:0}};if(other.pos.x>=this.pos.x&&other.pos.x<=this.pos.x+this.size.x){res.collision.x=true;}
if(other.pos.y>=this.pos.y&&other.pos.y<=this.pos.y+this.size.y){res.collision.y=true;}
other.handleMovementTrace(res);},update:function(){}});});

// lib/game/entities/clownocto.js
ig.baked=true;ig.module('game.entities.clownocto').requires('game.entities.special.creature').defines(function(){EntityClownocto=EntityCreature.extend({name:'clownocto',dupeClass:'EntityClownocto',size:{x:72,y:72},maxVel:{x:80,y:80},zIndex:21,health:70,gold:1000,damage:50,fly:false,animSheet:new ig.AnimationSheet('media/sprites/clownocto.png',144,144),init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim('main',this.framerate,[0,1,2,3,4,5,6,7,8,9]);this.postAnimSet(anim);}});});

// lib/game/entities/clownoctoette.js
ig.baked=true;ig.module('game.entities.clownoctoette').requires('game.entities.special.creature').defines(function(){EntityClownoctoette=EntityCreature.extend({name:'clownoctoette',dupeClass:'EntityClownoctoette',size:{x:64,y:64},offset:{x:16,y:16},maxVel:{x:120,y:120},zIndex:21,health:30,gold:0,damage:50,fly:false,framerate:.12,animSheet:new ig.AnimationSheet('media/sprites/clownoctoette.png',96,96),init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim('main',this.framerate,[0,1,2,3,4,5,6,7,8,9]);this.postAnimSet(anim);}});});

// lib/game/entities/bat.js
ig.baked=true;ig.module('game.entities.bat').requires('game.entities.special.creature').defines(function(){EntityBat=EntityCreature.extend({name:'bat',dupeClass:'EntityBat',size:{x:20,y:12},maxVel:{x:100,y:100},friction:{x:0,y:0},zIndex:61,health:20,damage:5,fly:true,gravityFactor:0,framerate:.08,animSheet:new ig.AnimationSheet('media/sprites/bat.png',24,16),init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim('main',this.framerate,[0,1,2,3]);this.postAnimSet(anim);},});});

// lib/game/entities/block.js
ig.baked=true;ig.module('game.entities.block').requires('game.entities.special.creature').defines(function(){EntityBlock=EntityCreature.extend({name:'block',etype:'block',size:{x:48,y:48},maxVel:{x:20,y:20},zIndex:11,health:100,xp:0,gold:0,damage:0,droptype:'none',movement:'wait',movenext:{start:'march',bump:'march',hurt:'',near:'',lost:'wait',returned:'wait'},framerate:1,tilenumber:48,hurtsound:'',type:ig.Entity.TYPE.B,collides:ig.Entity.COLLIDES.FIXED,animSheet:new ig.AnimationSheet('media/tileset-gorebag2.png',48,48),gravityFactor:0,march:'leftright',friction:{x:200,y:200},hurtby:{bomb:0,rocket:0,fireball:0,bullet:0,lava:0,slime:0},wait:3,init:function(x,y,settings){this.parent(x,y,settings);if(typeof(settings.offset)!='undefined'){this.offset.x=(typeof(settings.offset.x)!='undefined')?settings.offset.x:this.offset.x;this.offset.y=(typeof(settings.offset.y)!='undefined')?settings.offset.y:this.offset.y;}
if(this.movement=='solid'){this.collides=ig.Entity.COLLIDES.FIXED;if(typeof(settings.movenext.bump)=='undefined'){this.movenext.bump='none';}
if(typeof(settings.health)=='undefined'){this.health=9999;}}
var anim1;var anim2;anim1=this.addAnim('idle',this.framerate,[this.tilenumber]);this.postAnimSet(anim1,'');anim2=this.addAnim('idle2',this.framerate,[2]);this.postAnimSet(anim2,'');},setMovementType:function(which){this.parent(which);this.collides=ig.Entity.COLLIDES.FIXED;},checkB:function(other){if(typeof(other.etype)!='undefined'&&other.etype=='block'){if(other.march==this.march){this.parent(other);}}else if(typeof(other.turn)!='undefined'){this.parent(other);}}});});

// lib/game/entities/blocket.js
ig.baked=true;ig.module('game.entities.blocket').requires('impact.entity').defines(function(){EntityBlocket=ig.Entity.extend({name:"blocket",type:ig.Entity.TYPE.B,collides:ig.Entity.COLLIDES.FIXED,checkAgainst:ig.Entity.TYPE.NONE,size:{x:48,y:47},offset:{x:0,y:0},zIndex:11,waitTimer:null,animSheet:new ig.AnimationSheet('media/tileset-gorebag2.png',48,48),animDirections:[],canFire:true,_moveto:'',framerate:1,wait:4,flip:{x:false,y:false},pivot:{x:0,y:0},angle:0,explodesound:'explode',bounciness:0,gravityFactor:0,snd:{left:'',right:'',up:'',down:''},speed:30,tilenumber:48,moveable:{up:'true',down:'true',left:'true',right:'true'},solid:{initial:10,off:0,on:30,state:true,waiting:false},gtag:{},job:'',init:function(x,y,settings){this.parent(x,y,settings);var anim=this.addAnim('idle',this.framerate,[this.tilenumber]);this.postAnimSet(anim,'');if(this.solid.initial!=9999){this.solid.waiting=true;}
if(this.job=='solid'){this.moveable.up='no';this.moveable.down='no';this.moveable.left='no';this.moveable.right='no';}
this.waitTimer=new ig.Timer(this.solid.initial);},postInit:function(){for(attrib in this.gtag){ig.game.myOTags.registerForOTag(this,attrib);}},postAnimSet:function(anim,direction){anim.flip=this.flip;if(typeof(ig.game.myLib)!="undefined"){anim.angle=ig.game.myLib.degrees2radians(this.angle);}
if(typeof(direction)!='undefined'&&direction!=''){this.animDirections[direction]=anim;}},collideWith:function(other,axis){if(!this.touches(ig.game.player)){this._moveto='';return;}
if(axis=="y"){if(other.pos.y<=this.pos.y){this._moveto='down';}else{this._moveto='up';}}else{if(other.pos.x<=this.pos.x){this._moveto='right';}else{this._moveto='left';}}},setSolidState:function(solid){this.solid.state=solid;if(solid){this.type=ig.Entity.TYPE.B;this.collides=ig.Entity.COLLIDES.FIXED;this.currentAnim.alpha=1;}else{this.type=ig.Entity.TYPE.NONE;this.collides=ig.Entity.COLLIDES.NEVER;this.currentAnim.alpha=.5;}},checkSolidState:function(){if(!this.solid.waiting||this.waitTimer.delta()<0){return;}
if(this.solid.state){if(this.solid.off==9999){this.setSolidState(false);this.solid.waiting=false;}else if(this.solid.off==0){this.setSolidState(true);this.solid.waiting=false;}else{this.setSolidState(false);this.waitTimer.set(this.solid.off);}}else{if(this.solid.on==9999){this.setSolidState(true);this.solid.waiting=false;}else if(this.solid.on==0){this.setSolidState(false);this.solid.waiting=false;}else{this.setSolidState(true);this.waitTimer.set(this.solid.on);}}},update:function(){this.checkSolidState();this.vel.y=0;this.vel.x=0;if(!this.solid.state){return;}
if(this._moveto==''){}else if(this._moveto=='down'&&(this.moveable.down=='true'||this.moveable.down=='yes')){this.vel.y=this.speed;}else if(this._moveto=='up'&&(this.moveable.up=='true'||this.moveable.up=='yes')){this.vel.y=-1*this.speed;}else if(this._moveto=='left'&&(this.moveable.left=='true'||this.moveable.left=='yes')){this.vel.x=-1*this.speed;}else if(this._moveto=='right'&&(this.moveable.right=='true'||this.moveable.right=='yes')){this.vel.x=this.speed;}
this.parent();if(this._moveto=='up'||this._moveto=='down'){this.pos.x=parseInt(this.pos.x);}
if(this._moveto=='left'||this._moveto=='right'){this.pos.y=parseInt(this.pos.y);}
this._moveto='';},kill:function(){ig.game.mySounds.play(this.explodesound);var x=this.pos.x+this.size.x/2;var y=this.pos.y+this.size.y/2;ig.game.spawnEntity(EntityExplosion,x,y,{fizzle:false});ig.game.sortEntitiesDeferred();this.parent();},receiveTag:function(bywho,tag,settings){if(typeof(this.gtag[tag])=='undefined'){return;}
if(this.gtag[tag]=='kill'){this.kill();}}});});

// lib/game/entities/ctfguy.js
ig.baked=true;ig.module('game.entities.ctfguy').requires('game.entities.special.creature').defines(function(){EntityCtfguy=EntityCreature.extend({name:'ctfguy',dupeClass:'EntityCtfguy',size:{x:40,y:30},offset:{x:0,y:10},speed:40,speeddelta:20,maxVel:{x:100,y:100},zIndex:21,health:50,gold:300,damage:20,xp:0,fly:false,allfouranims:true,framerate:.2,hurtsound:'agony7',job:'ctfwait',team:'roo',chase:{who:'player',name:'',type:'',trget:null},animSheet:null,init:function(x,y,settings){if(settings.team&&!ig.global.wm){if(ig.game.mySprites.getSprite(settings.team+".png")!=null){this.team=settings.team;}}
this.animSheet=new ig.AnimationSheet('media/sprites/'+this.team+'.png',40,40);this.parent(x,y,settings);this.speed=this.speed+this.speeddelta*(Math.random()-.5);var anim;anim=this.addAnim('right',this.framerate*.95,[0,1,2,3]);this.postAnimSet(anim,'right');anim=this.addAnim('left',this.framerate*.95,[4,5,6,7]);this.postAnimSet(anim,'left');anim=this.addAnim('down',this.framerate,[8,9,10,11]);this.postAnimSet(anim,'down');anim=this.addAnim('up',this.framerate,[12,13,14,15]);this.postAnimSet(anim,'up');},receiveDamage:function(amount,from){if(from.team==this.team){return;}
this.parent(amount,from);},});});

// lib/game/entities/spikes.js
ig.baked=true;ig.module('game.entities.spikes').requires('game.entities.rtag').defines(function(){EntitySpikes=EntityRtag.extend({name:"spikes",size:{x:36,y:8},offset:{x:6,y:0},wait:.1,damage:30,zIndex:16,checkAgainst:ig.Entity.TYPE.A,animSheet:null,pointdir:'up',framerate:.1,_wmScalable:false,_wmDrawBox:false,init:function(x,y,settings){if(typeof(settings.attachto)!='undefined'&&typeof(settings.attachto.where)!='undefined'&&typeof(settings.pointdir)=='undefined'){settings.pointdir=settings.attachto.where;}
this.parent(x,y,settings);if(this.pointdir=='up'||this.pointdir=='down'){this.animSheet=new ig.AnimationSheet('media/sprites/spikesupdown.png',48,8);this.size={x:36,y:8};this.offset={x:6,y:0};}else{this.animSheet=new ig.AnimationSheet('media/sprites/spikesleftright.png',8,48);this.size={x:8,y:36};this.offset={x:0,y:6};}
var anim;if(this.pointdir=='up'||this.pointdir=='left'){anim=this.addAnim('idle',this.framerate,[0,2,1,0]);}else{anim=this.addAnim('idle',this.framerate,[3,5,4,3]);}},postinit:function(){this.parent();},check:function(other){this.parent(other);}});});

// lib/game/entities/mob.js
ig.baked=true;ig.module('game.entities.mob').requires('game.entities.special.creature').defines(function(){EntityMob=EntityCreature.extend({name:'mob',dupeClass:'EntityMob',_wmScalable:true,_wmDrawBox:true,_wmBoxColor:'rgba(255, 255, 255, 0.5)',size:{x:80,y:68},maxVel:{x:120,y:120},which:'mob04',_which:{mob04:{width:80,height:68,offset:{x:15,y:14},maxVel:{x:180,y:180},health:40,damage:20,xp:200,fly:false,frames:5,framerate:.2},robot:{width:42,height:94,offset:{x:6,y:0},maxVel:{x:90,y:90},health:60,damage:10,xp:100,fly:false,frames:4,framerate:.3,hurtby:{bomb:1,rocket:1,fireball:0,bullet:0,lava:1,slime:0}}},zIndex:21,health:40,gold:300,damage:20,xp:200,fly:false,allfouranims:true,framerate:.2,hurtsound:'agony7',animSheet:null,frame:5,init:function(x,y,settings){var which=(typeof(settings.which)!='undefined')?settings.which:this.which;this.applyWhich(which);this.parent(x,y,settings);},postInit:function(){this.initAnim();this.parent();},applyWhich:function(which){if(typeof(this._which[which])=='undefined'){which=this.which;}
this.width=this._which[which].width;this.height=this._which[which].height;this.offset=this._which[which].offset;this.maxVel=this._which[which].maxVel;this.damage=this._which[which].damage;this.health=this._which[which].health;this.framerate=this._which[which].framerate;this.xp=this._which[which].xp;this.fly=this._which[which].fly;this.frames=this._which[which].frames;this.size.x=this.width-2*this.offset.x;this.size.y=this.height-2*this.offset.y;this.hurtby=this._which[which].hurtby;},initAnim:function(){if(this.animSheet!=null){return;}
this.filename=this.which+".png";var path=ig.game.mySprites.getSpritePath(this.filename);this.animSheet=new ig.AnimationSheet(path,this.width,this.height);this.frames=parseInt(this.frames);var rframes=new Array(this.frames);var lframes=new Array(this.frames);var uframes=new Array(this.frames);var dframes=new Array(this.frames);var anim;for(var i=0;i<this.frames;i++){rframes[i]=i;}
anim=this.addAnim('right',this.framerate*.95,rframes);this.postAnimSet(anim,'right');for(var i=0;i<this.frames;i++){lframes[i]=this.frames+i;}
anim=this.addAnim('left',this.framerate*.95,lframes);this.postAnimSet(anim,'left');for(var i=0;i<this.frames;i++){dframes[i]=2*this.frames+i;}
anim=this.addAnim('down',this.framerate,dframes);this.postAnimSet(anim,'down');for(var i=0;i<this.frames;i++){uframes[i]=3*this.frames+i;}
anim=this.addAnim('up',this.framerate,uframes);this.postAnimSet(anim,'up');}});});

// lib/game/entities/batbig.js
ig.baked=true;ig.module('game.entities.batbig').requires('game.entities.special.creature').defines(function(){EntityBatbig=EntityCreature.extend({name:"batbig",dupClass:'EntityBatbig',size:{x:30,y:20},maxVel:{x:100,y:100},zIndex:61,health:30,damage:15,gold:0,fly:true,gravityFactor:0,framerate:0.1,animSheet:new ig.AnimationSheet('media/sprites/batbig.png',60,40),init:function(x,y,settings){this.parent(x,y,settings);this.addAnim('main',this.framerate,[0,1,2]);}});});

// lib/game/entities/boost.js
ig.baked=true;ig.module('game.entities.boost').requires('impact.entity').defines(function(){EntityBoost=ig.Entity.extend({name:"boost",size:{x:42,y:42},_wmScalable:true,_wmDrawBox:true,_wmBoxColor:'rgba(255, 0, 255, 0.5)',type:ig.Entity.TYPE.NONE,checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.NEVER,gravityFactor:0,waitTimer:null,canFire:true,wait:1,boost:{up:600,side:100,duration:3,type:1},init:function(x,y,settings){var settingscopy=ig.copy(settings);delete settingscopy.check;if(settings.checks){this.checkAgainst=ig.Entity.TYPE[settings.checks.toUpperCase()]||ig.Entity.TYPE.A;delete settingscopy.checks;}
this.parent(x,y,settingscopy);this.waitTimer=new ig.Timer();},check:function(other){if(!(this.canFire&&this.waitTimer.delta()>=0)){return;}
if(typeof(other.receiveBoost)!='undefined'){other.receiveBoost(this,this.boost);}
if(this.wait==-1){this.canFire=false;}
else{this.waitTimer.set(this.wait);}},update:function(){}});});

// lib/game/entities/lava.js
ig.baked=true;ig.module('game.entities.lava').requires('game.entities.rtag').defines(function(){EntityLava=EntityRtag.extend({name:"lava",_wmBoxColor:'rgba(255, 0, 0, 0.5)',wait:.08,damage:30,checkAgainst:ig.Entity.TYPE.BOTH,init:function(x,y,settings){this.parent(x,y,settings);},check:function(other){if(other.fly===true){return;}
this.parent(other);}});});

// lib/game/entities/heal.js
ig.baked=true;ig.module('game.entities.heal').requires('game.entities.rtag').defines(function(){EntityHeal=EntityRtag.extend({name:"heal",_wmBoxColor:'rgba(0, 0, 255, 0.5)',wait:.08,health:1,init:function(x,y,settings){this.parent(x,y,settings);},check:function(other){this.parent(other);},update:function(){}});});

// lib/game/entities/slime.js
ig.baked=true;ig.module('game.entities.slime').requires('game.entities.rtag').defines(function(){EntitySlime=EntityRtag.extend({name:"slime",size:{x:42,y:42},_wmBoxColor:'rgba(0, 255, 0, 0.5)',wait:.4,damage:10,init:function(x,y,settings){this.parent(x,y,settings);},check:function(other){if(other.fly===true){return;}
this.parent(other);},update:function(){}});});

// lib/game/entities/bloo.js
ig.baked=true;ig.module('game.entities.bloo').requires('game.entities.ctfguy').defines(function(){EntityBloo=EntityCtfguy.extend({name:'bloo',dupeClass:'EntityBloo',team:'bloo',damage:0,chase:{who:'bytype',name:'',type:'EntityRoo'},init:function(x,y,settings){this.parent(x,y,settings);}});});

// lib/game/entities/roo.js
ig.baked=true;ig.module('game.entities.roo').requires('game.entities.ctfguy').defines(function(){EntityRoo=EntityCtfguy.extend({name:'roo',dupeClass:'EntityRoo',team:'roo',chase:{who:'player',name:'',type:''},init:function(x,y,settings){this.parent(x,y,settings);}});});

// lib/game/entities/rooflag.js
ig.baked=true;ig.module('game.entities.rooflag').requires('impact.entity').defines(function(){EntityRooflag=ig.Entity.extend({name:"rooflag",etype:"key",size:{x:30,y:40},offset:{x:9,y:18},target:null,keyid:"rooflag",keyuses:1,snd:{pickup:'flagup'},type:ig.Entity.TYPE.NONE,checkAgainst:ig.Entity.TYPE.A,collides:ig.Entity.COLLIDES.NEVER,animSheet:new ig.AnimationSheet("media/sprites/rooflag.png",48,58),otag:{pickup:'flagaway'},init:function(x,y,settings){this.parent(x,y,settings);this.addAnim("idle",1,[0,1,2,3,4,5,6]);},check:function(other){ig.game.backpack.addKey(this);ig.game.myOTags.broadcastOTag(this,this.otag['pickup'],{why:'pickup',other:other});this.kill();}});});

// lib/game/levels/maze00.js
ig.baked=true;ig.module('game.levels.maze00').requires('impact.image').defines(function(){LevelMaze00={"entities":[{"type":"EntityVoid","x":376,"y":184,"settings":{"name":"pspawn"}},{"type":"EntityBlackboard","x":274,"y":438,"settings":{"message":"Welcome to the Void. Prepare to Meet Thy Maker."}},{"type":"EntityTeleport","x":228,"y":184,"settings":{"row":0,"col":1,"color":"yellow"}},{"type":"EntityTeleport","x":968,"y":-8,"settings":{"row":2,"col":2,"color":"red"}},{"type":"EntityTeleport","x":384,"y":36,"settings":{"row":1,"col":0,"color":"green"}},{"type":"EntityTeleport","x":524,"y":184,"settings":{"row":2,"col":0,"color":"blue"}},{"type":"EntityOtext","x":128,"y":176,"settings":{"text":"Easy","showtext":"true"}},{"type":"EntityOtext","x":436,"y":32,"settings":{"text":"Normal","showtext":"true"}},{"type":"EntityOtext","x":580,"y":176,"settings":{"text":"Hell","showtext":"true"}},{"type":"EntityOtext","x":232,"y":416,"settings":{"text":"Beyond Hell","showtext":"true"}},{"type":"EntityTeleport","x":380,"y":420,"settings":{"row":3,"col":2,"color":"red","size":{"x":12,"y":12}}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0],[0,0,0,1,1,1,1,0,0,1,1,1,1,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,1,1,1,1,0,0,1,1,1,1,0,0,0],[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0],[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0],[0,0,0,34,34,34,34,38,38,34,34,34,34,0,0,0],[0,0,0,34,38,38,38,38,38,38,38,38,34,0,0,0],[0,0,0,34,38,38,38,38,38,38,38,38,34,0,0,0],[0,0,0,34,34,34,34,38,38,34,34,34,34,0,0,0],[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0],[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0],[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0],[0,0,0,0,0,0,34,38,38,34,0,0,0,0,0,0]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,233,0,239,240,241,242,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,261,262,263,264,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,253,254,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,0,233,234,253,254,0,254,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,239,240,281,281,281,281,277,0,233,234,253,254,0,276,281,281,281,281,241,242,0,0,0,0,0,0],[0,0,0,0,0,0,261,262,0,0,0,0,0,0,233,234,253,254,0,0,0,0,0,0,263,264,0,0,0,0,0,0],[0,0,0,0,0,0,233,234,239,240,280,280,280,281,277,278,275,276,280,280,280,280,241,242,231,232,0,0,0,0,0,0],[0,0,0,0,0,0,255,256,261,262,302,302,302,303,299,300,297,298,302,302,302,302,263,264,253,254,0,0,0,0,0,0],[0,0,0,0,0,0,233,234,283,284,236,236,236,237,189,190,187,188,236,236,236,236,285,286,231,232,0,0,0,0,0,0],[0,0,0,0,0,0,255,256,305,306,258,258,258,259,211,212,209,210,258,258,258,258,307,308,253,254,0,0,0,0,0,0],[0,0,0,0,0,0,283,284,0,0,0,0,0,0,233,234,231,232,0,0,0,0,0,0,285,286,0,0,0,0,0,0],[0,0,0,0,0,0,305,306,258,258,258,258,211,0,233,234,231,232,0,210,258,258,258,258,307,308,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,233,234,231,232,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,0,283,284,285,286,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,0,305,306,307,308,0,254,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze00Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze01.js
ig.baked=true;ig.module('game.levels.maze01').requires('impact.image').defines(function(){LevelMaze01={"entities":[{"type":"EntityVoid","x":2992,"y":856,"settings":{"name":"pspawn"}},{"type":"EntityTeleport","x":2996,"y":628,"settings":{"row":0,"col":2,"size":{"x":52,"y":88}}},{"type":"EntityBlackboard","x":68,"y":-200,"settings":{"message":"death is a way of saying you missed the jump."}},{"type":"EntityTrench","x":2980,"y":436,"settings":{"size":{"x":88,"y":184}}},{"type":"EntityTrench","x":2984,"y":52,"settings":{"size":{"x":60,"y":280}}},{"type":"EntityTrench","x":2788,"y":720,"settings":{"size":{"x":276,"y":92}}},{"type":"EntityTrench","x":2788,"y":628,"settings":{"size":{"x":94,"y":92}}},{"type":"EntityTrench","x":2500,"y":724,"settings":{"size":{"x":184,"y":184}}},{"type":"EntityTrench","x":2020,"y":532,"settings":{"size":{"x":856,"y":88}}},{"type":"EntityTrench","x":2308,"y":628,"settings":{"size":{"x":88,"y":184}}},{"type":"EntityTrench","x":2116,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1632,"y":532,"settings":{"size":{"x":380,"y":184}}},{"type":"EntityTrench","x":1160,"y":532,"settings":{"size":{"x":468,"y":88}}},{"type":"EntityTrench","x":1248,"y":720,"settings":{"size":{"x":280,"y":184}}},{"type":"EntityTrench","x":1540,"y":816,"settings":{"size":{"x":668,"y":88}}},{"type":"EntityTrench","x":1060,"y":536,"settings":{"size":{"x":88,"y":284}}},{"type":"EntityTrench","x":584,"y":628,"settings":{"size":{"x":376,"y":284}}},{"type":"EntityTrench","x":768,"y":240,"settings":{"size":{"x":88,"y":188}}},{"type":"EntityTrench","x":964,"y":52,"settings":{"size":{"x":88,"y":284}}},{"type":"EntityTrench","x":1152,"y":144,"settings":{"size":{"x":188,"y":380}}},{"type":"EntityTrench","x":1632,"y":148,"settings":{"size":{"x":572,"y":88}}},{"type":"EntityTrench","x":2308,"y":148,"settings":{"size":{"x":572,"y":88}}},{"type":"EntityTrench","x":2212,"y":244,"settings":{"size":{"x":88,"y":280}}},{"type":"EntityTrench","x":2396,"y":344,"settings":{"size":{"x":572,"y":88}}},{"type":"EntityTrench","x":1536,"y":340,"settings":{"size":{"x":572,"y":88}}},{"type":"EntityTrench","x":1444,"y":52,"settings":{"size":{"x":88,"y":284}}},{"type":"EntityTrench","x":100,"y":148,"settings":{"size":{"x":760,"y":88}}},{"type":"EntityTrench","x":104,"y":240,"settings":{"size":{"x":88,"y":572}}},{"type":"EntityTrench","x":196,"y":724,"settings":{"size":{"x":280,"y":84}}},{"type":"EntityTrench","x":292,"y":336,"settings":{"size":{"x":376,"y":284}}},{"type":"EntityTrench","x":772,"y":436,"settings":{"size":{"x":376,"y":92}}},{"type":"EntityTrench","x":1972,"y":0,"settings":{"size":{"x":1004,"y":44}}},{"type":"EntityTrench","x":964,"y":0,"settings":{"size":{"x":1000,"y":44}}},{"type":"EntityTrench","x":4,"y":4,"settings":{"size":{"x":956,"y":40}}}],"layer":[{"name":"collision","width":64,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"hubble","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/hubble01.jpg","repeat":true,"distance":"5","tilesize":48,"foreground":false,"data":[[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32],[33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160]]},{"name":"main","width":64,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":128,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0],[269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0],[297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0],[325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0],[241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0],[269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0],[297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0],[325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0],[241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0],[269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0],[297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0],[325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0],[241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0],[269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0],[297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0],[325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0],[241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0],[269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0],[297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0],[325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0],[241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,241,242,243,244],[269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,269,270,271,272],[297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,297,298,299,300],[325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,325,326,327,328],[241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0],[269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0],[297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0],[325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0],[241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,0,0,0,0,0,0,0,0,241,242,243,244,241,242,243,244,241,242,243,244,241,242,243,244],[269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,0,0,0,0,0,0,0,0,269,270,271,272,269,270,271,272,269,270,271,272,269,270,271,272],[297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,0,0,0,0,0,0,0,0,297,298,299,300,297,298,299,300,297,298,299,300,297,298,299,300],[325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,0,0,0,0,0,0,0,0,325,326,327,328,325,326,327,328,325,326,327,328,325,326,327,328],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":128,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":true,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,68,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,178,0,0,0,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze01Resources=[new ig.Image('media/hubble01.jpg'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-trenchs.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze02.js
ig.baked=true;ig.module('game.levels.maze02').requires('impact.image').defines(function(){LevelMaze02={"entities":[{"type":"EntityVoid","x":132,"y":228,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":664,"y":232,"settings":{"row":0,"col":3}},{"type":"EntityTrench","x":0,"y":192,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":104,"y":100,"settings":{"size":{"x":92,"y":90}}},{"type":"EntityTrench","x":620,"y":100,"settings":{"size":{"x":96,"y":88}}},{"type":"EntityTrench","x":108,"y":292,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":200,"y":268,"settings":{"size":{"x":192,"y":88}}},{"type":"EntityTrench","x":200,"y":124,"settings":{"size":{"x":192,"y":88}}},{"type":"EntityTrench","x":528,"y":120,"settings":{"size":{"x":96,"y":88}}},{"type":"EntityTrench","x":528,"y":268,"settings":{"size":{"x":96,"y":88}}},{"type":"EntityTrench","x":628,"y":292,"settings":{"size":{"x":96,"y":88}}},{"type":"EntityTrench","x":728,"y":196,"settings":{"size":{"x":96,"y":88}}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"hubble","width":16,"height":10,"linkWithCollision":false,"visible":true,"tilesetName":"media/hubble01.jpg","repeat":true,"distance":"2","tilesize":48,"foreground":false,"data":[[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32],[33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,0,45,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0],[0,0,0,0,0,0,0,0,45,0,45,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,280,281,241,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,302,303,263,264,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,0,0,285,286,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,0,0,307,308,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,0,0,0,305,306,307,308,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,280,281,241,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,302,303,263,264,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,236,237,285,286,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,258,259,307,308,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,271,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,299,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze02Resources=[new ig.Image('media/hubble01.jpg'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze03.js
ig.baked=true;ig.module('game.levels.maze03').requires('impact.image').defines(function(){LevelMaze03={"entities":[{"type":"EntityVoid","x":132,"y":228,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"blkrightup","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"blkleftdown","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"blkrightdown","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"blkleftup","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":664,"y":232,"settings":{"row":0,"col":4,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":288,"y":144,"settings":{"facing":"down","movenext":{"start":"march"},"name":"blkleftup"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"blkleftdown","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"blkrightup","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"blkrightdown","where":"up"},"pointdir":"up"}},{"type":"EntityTrench","x":628,"y":100,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":56,"y":192,"settings":{"size":{"x":42,"y":96}}},{"type":"EntityTrench","x":104,"y":288,"settings":{"size":{"x":128,"y":88}}},{"type":"EntityTrench","x":104,"y":100,"settings":{"size":{"x":144,"y":88}}},{"type":"EntityTrench","x":528,"y":124,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":528,"y":268,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":628,"y":292,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":724,"y":196,"settings":{"size":{"x":92,"y":88}}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,3,3,3,3,3,3,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze03Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze04.js
ig.baked=true;ig.module('game.levels.maze04').requires('impact.image').defines(function(){LevelMaze04={"entities":[{"type":"EntityVoid","x":96,"y":400,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":336,"y":288,"settings":{"facing":"right","movenext":{"start":"march"},"tilenumber":24}},{"type":"EntityTeleport","x":1308,"y":120,"settings":{"row":1,"col":0,"size":{"x":24,"y":20}}},{"type":"EntityConfig","x":88,"y":80,"settings":{"world":"side"}},{"type":"EntityVoid","x":628,"y":300,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":320,"y":304,"settings":{"type":2,"turn":{"right":{"to":"right"}}}},{"type":"EntityLava","x":772,"y":388,"settings":{"size":{"x":712,"y":42}}},{"type":"EntityLava","x":340,"y":384,"settings":{"size":{"x":284,"y":42}}}],"layer":[{"name":"collision","width":32,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"name":"main","width":32,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,49,49,0,0,0,0,0,0,49,49,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,49,49,49,14,14,14,14,14,14,49,49,49,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,0],[38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38]]},{"name":"shadow","width":64,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,242,239,242,0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,308,305,308,0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,280,0,0],[0,0,0,0,0,0,0,0,239,242,239,242,239,242,280,280,280,280,280,280,280,280,280,280,280,280,239,242,239,242,239,242,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,0,0],[0,0,0,0,0,0,0,0,305,308,305,308,305,308,258,258,258,258,258,258,258,258,258,258,258,259,305,308,305,308,305,308,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,0,0],[280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,281,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280,280],[302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,303,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302,302]]}]};LevelMaze04Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze10.js
ig.baked=true;ig.module('game.levels.maze10').requires('impact.image').defines(function(){LevelMaze10={"entities":[{"type":"EntityVoid","x":376,"y":228,"settings":{"name":"pspawn"}},{"type":"EntityTeleport","x":672,"y":232,"settings":{"row":0,"col":2}},{"type":"EntityTeleport","x":380,"y":380,"settings":{"row":0,"col":3}},{"type":"EntityTeleport","x":92,"y":232,"settings":{"row":0,"col":1}},{"type":"EntityTeleport","x":380,"y":92,"settings":{"row":1,"col":1}},{"type":"EntityOtext","x":264,"y":260,"settings":{"text":"Choose Wisely, O Bornless One.","showtext":"true"}},{"type":"EntityOtext","x":244,"y":188,"settings":{"text":"Only One is True. All Others are False.","showtext":"true"}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0],[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0],[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0],[38,38,38,38,0,0,38,38,38,38,0,0,38,38,38,38],[38,38,38,38,0,0,0,0,0,0,0,0,38,38,38,38],[38,38,38,38,0,0,0,0,0,0,0,0,38,38,38,38],[38,38,38,38,0,0,38,38,38,38,0,0,38,38,38,38],[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0],[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0],[0,0,0,0,0,0,38,38,38,38,0,0,0,0,0,0]]},{"name":"trenches","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,239,240,280,281,280,281,241,242,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,261,262,302,303,302,303,263,264,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,234,209,210,211,212,231,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,256,231,232,233,234,253,254,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,234,253,254,255,256,231,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,256,275,276,277,278,253,254,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,280,281,280,281,241,242,0,0,0,0,283,284,236,237,236,237,285,286,0,0,0,0,239,240,280,281,280,281,241,242],[261,262,302,303,302,303,263,264,0,0,0,0,305,306,258,259,258,259,307,308,0,0,0,0,261,262,302,303,302,303,263,264],[233,234,209,210,211,212,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,209,210,211,212,231,232],[255,256,231,232,233,234,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,231,232,233,234,253,254],[233,234,253,254,255,256,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,253,254,255,256,231,232],[255,256,275,276,277,278,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,275,276,277,278,253,254],[283,284,236,237,236,237,285,286,0,0,0,0,239,240,280,281,280,281,241,242,0,0,0,0,283,284,236,237,236,237,285,286],[305,306,258,259,258,259,307,308,0,0,0,0,261,262,302,303,302,303,263,264,0,0,0,0,305,306,258,259,258,259,307,308],[0,0,0,0,0,0,0,0,0,0,0,0,233,234,209,210,211,212,231,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,256,231,232,233,234,253,254,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,233,234,253,254,255,256,231,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,255,256,275,276,277,278,253,254,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,283,284,236,237,236,237,285,286,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,305,306,258,259,258,259,307,308,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze10Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-trenchs.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze11.js
ig.baked=true;ig.module('game.levels.maze11').requires('impact.image').defines(function(){LevelMaze11={"entities":[{"type":"EntityVoid","x":16,"y":396,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":620,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityTeleport","x":732,"y":392,"settings":{"row":1,"col":2}},{"type":"EntityConfig","x":220,"y":72,"settings":{"world":"side"}},{"type":"EntityVoid","x":352,"y":208,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityLava","x":152,"y":424,"settings":{"size":{"x":512,"y":20}}},{"type":"EntityBlock","x":144,"y":336,"settings":{"facing":"up","movenext":{"start":"march"},"moveable":{"right":"false"},"name":"block1"}},{"type":"EntityBlock","x":240,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":336,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":432,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":528,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityVoid","x":160,"y":184,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":260,"y":136,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":448,"y":68,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":540,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":640,"y":64,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":156,"y":400,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":548,"y":284,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":448,"y":268,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":356,"y":388,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":260,"y":280,"settings":{"type":2,"turn":{"up":{"to":"up"}}}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0],[49,49,49,14,14,14,14,14,14,14,14,14,14,14,49,49]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,280,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,258,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[280,280,280,280,280,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,280,280,280,280],[258,258,258,258,258,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,258,258,258,258]]}]};LevelMaze11Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze12.js
ig.baked=true;ig.module('game.levels.maze12').requires('impact.image').defines(function(){LevelMaze12={"entities":[{"type":"EntityVoid","x":628,"y":404,"settings":{"name":"ps4"}},{"type":"EntityTeleport","x":84,"y":152,"settings":{"row":1,"col":3,"size":{"x":16,"y":12},"keyid":"masterkey","failmessage":"You need the Master Key."}},{"type":"EntityTeleport","x":500,"y":244,"settings":{"keyid":"goldkey","spawnat":"ps3","row":1,"col":2,"failmessage":"You need the Gold Key."}},{"type":"EntityTeleport","x":276,"y":280,"settings":{"keyid":"silver","spawnat":"ps2","row":1,"col":2,"size":{"x":16,"y":12},"failmessage":"You need the Silver Key."}},{"type":"EntityTeleport","x":680,"y":64,"settings":{"keyid":"green","spawnat":"ps4","row":1,"col":2,"failmessage":"You need the Green Key."}},{"type":"EntityTeleport","x":688,"y":404,"settings":{"keyid":"bluekey","spawnat":"ralphthespawnpoint","row":1,"col":2,"failmessage":"You need the Blue Key."}},{"type":"EntityKey","x":684,"y":308,"settings":{"keyid":"bluekey","color":"blue"}},{"type":"EntityKey","x":80,"y":276,"settings":{"keyid":"silver","color":"silver"}},{"type":"EntityKey","x":496,"y":404,"settings":{"keyid":"goldkey"}},{"type":"EntityKey","x":684,"y":212,"settings":{"keyid":"green","color":"green"}},{"type":"EntityVoid","x":276,"y":332,"settings":{"name":"pspawn"}},{"type":"EntityVoid","x":496,"y":196,"settings":{"name":"ps2"}},{"type":"EntityVoid","x":632,"y":64,"settings":{"name":"ps3"}},{"type":"EntityVoid","x":84,"y":112,"settings":{"name":"ralphthespawnpoint"}},{"type":"EntityKey","x":280,"y":156,"settings":{"keyid":"masterkey","color":"red"}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1],[1,0,0,1,1,0,0,1,0,1,0,1,0,1,1,1],[1,0,0,1,1,0,0,1,0,1,0,1,0,1,1,1],[1,1,1,1,1,1,1,1,0,1,0,1,0,0,0,1],[1,0,0,1,1,0,0,1,0,1,0,1,1,1,1,1],[1,0,0,1,1,0,0,1,0,1,1,1,0,0,0,1],[1,0,0,1,1,0,0,1,0,0,0,1,0,1,1,1],[1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2],[2,21,21,21,21,21,21,2,21,21,21,2,21,21,21,2],[2,21,21,2,2,21,21,2,21,2,21,2,21,2,2,2],[2,21,21,2,2,21,21,2,21,2,21,2,21,2,2,2],[2,2,2,2,2,2,2,2,21,2,21,2,21,21,21,2],[2,21,21,2,2,21,21,2,21,2,21,2,2,2,2,2],[2,21,21,2,2,21,21,2,21,2,2,2,21,21,21,2],[2,21,21,2,2,21,21,2,21,21,21,2,21,2,2,2],[2,21,21,21,21,21,21,2,2,2,21,2,21,21,21,2],[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[3,0,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,0],[3,0,280,280,280,280,280,280,280,280,280,280,241,242,3,0,280,280,280,280,241,242,3,0,280,280,280,280,241,242,3,0],[3,0,302,302,302,302,302,302,302,302,302,302,263,264,3,0,302,302,302,302,263,264,3,0,302,302,302,302,263,264,3,0],[3,0,0,0,263,264,3,0,0,0,0,0,231,232,3,0,231,232,3,0,231,232,3,0,231,232,3,0,0,0,0,0],[3,0,0,0,231,232,3,0,0,0,0,0,231,232,3,0,231,232,3,0,231,232,3,0,231,232,3,0,0,0,0,0],[3,0,0,0,263,264,3,0,0,0,0,0,231,232,3,0,231,232,3,0,231,232,3,0,231,232,3,0,0,0,0,0],[3,0,0,0,231,232,3,0,0,0,0,0,231,232,3,0,231,232,3,0,231,232,3,0,263,264,3,3,3,3,3,0],[3,0,0,0,0,0,0,0,0,0,0,0,231,232,3,0,231,232,3,0,231,232,3,0,275,276,280,281,241,242,3,0],[3,0,3,3,3,3,3,0,0,0,3,3,3,3,3,0,231,232,3,0,231,232,3,0,297,298,302,303,263,264,3,0],[3,0,280,280,241,242,3,0,0,0,280,280,241,242,3,0,231,232,3,0,231,232,3,0,0,0,0,0,0,0,0,0],[3,0,302,302,263,264,3,302,302,302,302,302,263,264,3,0,231,232,3,0,253,254,3,0,3,3,3,3,3,3,3,0],[3,0,0,0,231,232,3,0,0,0,0,0,231,232,3,0,231,232,3,0,0,0,0,0,280,280,280,280,241,242,3,0],[3,0,0,0,231,232,3,0,0,0,0,0,231,232,3,0,231,232,3,3,3,3,3,0,302,302,302,302,263,264,3,0],[3,0,0,0,231,232,3,0,0,0,0,0,231,232,3,0,275,276,280,280,241,242,3,0,231,232,3,0,0,0,3,0],[3,0,0,0,231,232,3,3,3,3,0,0,231,232,3,0,297,298,302,302,263,264,3,0,253,254,3,3,3,3,3,0],[3,0,0,0,275,276,280,280,280,280,0,0,231,232,3,0,0,0,0,0,231,232,3,0,275,276,280,280,241,242,3,0],[3,0,0,0,297,298,302,302,302,302,0,0,253,254,3,0,0,0,0,0,253,254,3,0,297,298,302,302,263,264,3,0],[3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]]}]};LevelMaze12Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze13.js
ig.baked=true;ig.module('game.levels.maze13').requires('impact.image').defines(function(){LevelMaze13={"entities":[{"type":"EntityVoid","x":64,"y":400,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":620,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityTeleport","x":740,"y":408,"settings":{"row":1,"col":4}},{"type":"EntityConfig","x":-56,"y":24,"settings":{"world":"side"}},{"type":"EntityLava","x":152,"y":424,"settings":{"size":{"x":512,"y":20}}},{"type":"EntityBlock","x":144,"y":336,"settings":{"facing":"up","movenext":{"start":"march"},"moveable":{"right":"false"},"name":"block1"}},{"type":"EntityBlock","x":240,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":336,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":432,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityBlock","x":528,"y":336,"settings":{"facing":"up","movenext":{"start":"march"}}},{"type":"EntityVoid","x":156,"y":400,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":356,"y":388,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityBlackboard","x":972,"y":172,"settings":{"message":"Timing is everything."}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,49,0,0,0,49,0,0,0,49,0,0,0,0],[0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0],[49,49,49,14,14,14,14,14,14,14,14,14,14,14,49,49]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,239,242,0,0,0,0,0,0,239,242,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,305,308,0,0,0,0,0,0,305,308,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,242,239,242,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242],[305,308,305,308,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308]]}]};LevelMaze13Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze14.js
ig.baked=true;ig.module('game.levels.maze14').requires('impact.image').defines(function(){LevelMaze14={"entities":[{"type":"EntityVoid","x":400,"y":412,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":480,"y":144,"settings":{"name":"mb","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":336,"y":150,"settings":{"attachto":{"name":"mb2","where":"right"},"pointdir":"right"}},{"type":"EntitySpikes","x":472,"y":150,"settings":{"attachto":{"name":"mb","where":"left"},"pointdir":"left"}},{"type":"EntityTeleport","x":404,"y":72,"settings":{"row":2,"col":0}},{"type":"EntityConfig","x":28,"y":-52,"settings":{"world":"side"}},{"type":"EntityLava","x":52,"y":404,"settings":{"size":{"x":232,"y":22}}},{"type":"EntityLava","x":536,"y":408,"settings":{"size":{"x":184,"y":22}}}],"layer":[{"name":"collision","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0],[1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0],[1,0,0,1,0,1,0,0,0,0,0,1,1,1,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1],[1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]]},{"name":"main","width":16,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,49,49,49,0,49,49,49,0,0,0,0],[0,0,0,0,49,49,0,0,0,0,0,49,49,0,0,0],[0,0,0,49,49,49,0,0,0,0,0,49,49,49,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49],[0,0,0,0,0,0,0,0,0,0,0,0,49,0,0,0],[0,0,0,0,0,0,49,49,38,49,49,0,0,0,0,0],[14,14,14,14,14,14,38,38,38,38,38,14,14,14,14,14]]},{"name":"shadow","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,242,239,242,239,242,0,0,239,242,239,242,239,242,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,308,305,308,305,308,0,0,305,308,305,308,305,308,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,239,242,239,242,0,0,0,0,0,0,0,0,0,0,239,242,239,242,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,305,308,305,308,0,0,0,0,0,0,0,0,0,0,305,308,305,308,0,0,0,0,0,0],[0,0,0,0,0,0,239,242,239,242,239,242,0,0,0,0,0,0,0,0,0,0,239,242,239,242,239,242,0,0,0,0],[0,0,0,0,0,0,305,308,305,308,305,308,0,0,0,0,0,0,0,0,0,0,305,308,305,308,305,308,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242,239,242,239,242,239,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308,305,308,305,308,305,308,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,239,242,239,242,239,242,239,242,239,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,305,308,305,308,305,308,305,308,305,308,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze14Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze20.js
ig.baked=true;ig.module('game.levels.maze20').requires('impact.image').defines(function(){LevelMaze20={"entities":[{"type":"EntityVoid","x":136,"y":232,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":280,"settings":{"attachto":{"name":"mb_clone","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"mb2_clone","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":1432,"y":240,"settings":{"row":2,"col":1,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"mb2_clone","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"mb_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb2_clone_clone","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"mb2_clone_clone","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb_clone_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb_clone_clone","where":"up"},"pointdir":"up"}},{"type":"EntityConfig","x":120,"y":72,"settings":{"world":"flat"}},{"type":"EntityTrench","x":724,"y":168,"settings":{"size":{"x":228,"y":42}}},{"type":"EntityTrench","x":104,"y":292,"settings":{"size":{"x":80,"y":94}}},{"type":"EntityTrench","x":196,"y":268,"settings":{"size":{"x":84,"y":46}}},{"type":"EntityTrench","x":344,"y":268,"settings":{"size":{"x":84,"y":42}}},{"type":"EntityTrench","x":492,"y":172,"settings":{"size":{"x":128,"y":42}}},{"type":"EntityTrench","x":352,"y":172,"settings":{"size":{"x":84,"y":42}}},{"type":"EntityTrench","x":196,"y":172,"settings":{"size":{"x":84,"y":42}}},{"type":"EntityTrench","x":1396,"y":292,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":1048,"y":168,"settings":{"size":{"x":340,"y":42}}},{"type":"EntityTrench","x":496,"y":268,"settings":{"size":{"x":128,"y":42}}},{"type":"EntityTrench","x":632,"y":292,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":632,"y":148,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":1400,"y":148,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":732,"y":268,"settings":{"size":{"x":228,"y":42}}},{"type":"EntityTrench","x":1052,"y":268,"settings":{"size":{"x":340,"y":42}}},{"type":"EntityTrench","x":108,"y":92,"settings":{"size":{"x":80,"y":94}}},{"type":"EntityTrench","x":16,"y":192,"settings":{"size":{"x":80,"y":94}}}],"layer":[{"name":"collision","width":32,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":32,"height":10,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":64,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,3,3,3,3,3,3,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":64,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze20Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze21.js
ig.baked=true;ig.module('game.levels.maze21').requires('impact.image').defines(function(){LevelMaze21={"entities":[{"type":"EntityVoid","x":136,"y":772,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":1432,"y":240,"settings":{"row":2,"col":2,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb2_clone_clone","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"mb2_clone_clone","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb_clone_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb_clone_clone","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"blocktwo","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":280,"settings":{"attachto":{"name":"blocktwo","where":"up"},"pointdir":"up"}},{"type":"EntityTrench","x":52,"y":288,"settings":{"size":{"x":64,"y":428}}},{"type":"EntityTrench","x":100,"y":816,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":532,"y":288,"settings":{"size":{"x":380,"y":96}}},{"type":"EntityTrench","x":192,"y":724,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":172,"y":288,"settings":{"size":{"x":64,"y":428}}},{"type":"EntityTrench","x":4,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":0,"y":192,"settings":{"size":{"x":96,"y":96}}},{"type":"EntityTrench","x":100,"y":92,"settings":{"size":{"x":96,"y":96}}},{"type":"EntityTrench","x":1388,"y":92,"settings":{"size":{"x":100,"y":96}}},{"type":"EntityTrench","x":532,"y":92,"settings":{"size":{"x":376,"y":96}}},{"type":"EntityTrench","x":1204,"y":116,"settings":{"size":{"x":188,"y":96}}},{"type":"EntityTrench","x":1204,"y":268,"settings":{"size":{"x":184,"y":96}}},{"type":"EntityTrench","x":1396,"y":292,"settings":{"size":{"x":100,"y":96}}},{"type":"EntityTrench","x":1496,"y":192,"settings":{"size":{"x":100,"y":96}}}],"layer":[{"name":"collision","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,3,3,3,3,3,3,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze21Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze22.js
ig.baked=true;ig.module('game.levels.maze22').requires('impact.image').defines(function(){LevelMaze22={"entities":[{"type":"EntityVoid","x":136,"y":772,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":1436,"y":232,"settings":{"row":2,"col":3,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"zippy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"zippy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"zappy2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"zappy2","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"zappy1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":298,"y":192,"settings":{"attachto":{"name":"zappy1","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"zippy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"zippy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityTrench","x":724,"y":148,"settings":{"size":{"x":184,"y":60}}},{"type":"EntityTrench","x":8,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":104,"y":820,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":532,"y":268,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":176,"y":580,"settings":{"size":{"x":88,"y":136}}},{"type":"EntityTrench","x":32,"y":580,"settings":{"size":{"x":88,"y":136}}},{"type":"EntityTrench","x":32,"y":292,"settings":{"size":{"x":88,"y":136}}},{"type":"EntityTrench","x":204,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":8,"y":196,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":180,"y":292,"settings":{"size":{"x":60,"y":136}}},{"type":"EntityTrench","x":1208,"y":268,"settings":{"size":{"x":172,"y":60}}},{"type":"EntityTrench","x":104,"y":100,"settings":{"size":{"x":140,"y":88}}},{"type":"EntityTrench","x":1488,"y":196,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":540,"y":124,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1400,"y":100,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1396,"y":292,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":740,"y":272,"settings":{"size":{"x":172,"y":60}}},{"type":"EntityTrench","x":1212,"y":152,"settings":{"size":{"x":172,"y":60}}}],"layer":[{"name":"collision","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze22Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze23.js
ig.baked=true;ig.module('game.levels.maze23').requires('impact.image').defines(function(){LevelMaze23={"entities":[{"type":"EntityVoid","x":136,"y":760,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb3a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"mb6b","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb3b","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":192,"settings":{"attachto":{"name":"mb4a","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":1432,"y":240,"settings":{"row":2,"col":4,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"mb5a","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"mb6b","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb3a","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb3b","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"mb1b","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"mb1b","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb2b","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb2b","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"mb6a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"mb6a","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"mb5b","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"mb4b","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb2a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"mb2a","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"mb1a","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"mb1a","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"mb4b","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":280,"settings":{"attachto":{"name":"mb5b","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":816,"y":144,"settings":{"name":"mb4a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"mb5a","where":"down"},"pointdir":"down"}},{"type":"EntityTrench","x":728,"y":272,"settings":{"size":{"x":28,"y":108}}},{"type":"EntityTrench","x":528,"y":128,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":8,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":200,"y":724,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":172,"y":532,"settings":{"size":{"x":88,"y":184}}},{"type":"EntityTrench","x":32,"y":532,"settings":{"size":{"x":88,"y":184}}},{"type":"EntityTrench","x":196,"y":196,"settings":{"size":{"x":88,"y":16}}},{"type":"EntityTrench","x":28,"y":292,"settings":{"size":{"x":88,"y":176}}},{"type":"EntityTrench","x":196,"y":268,"settings":{"size":{"x":88,"y":16}}},{"type":"EntityTrench","x":108,"y":820,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":4,"y":196,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":104,"y":100,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1200,"y":124,"settings":{"size":{"x":188,"y":88}}},{"type":"EntityTrench","x":532,"y":268,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":632,"y":292,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":176,"y":292,"settings":{"size":{"x":24,"y":184}}},{"type":"EntityTrench","x":728,"y":104,"settings":{"size":{"x":28,"y":108}}},{"type":"EntityTrench","x":632,"y":100,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1400,"y":100,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1496,"y":196,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1400,"y":292,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1204,"y":268,"settings":{"size":{"x":188,"y":88}}}],"layer":[{"name":"collision","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":32,"height":20,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,34,0,34,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,34,0,34,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,3,3,3,3,3,3,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":64,"height":40,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze23Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze24.js
ig.baked=true;ig.module('game.levels.maze24').requires('impact.image').defines(function(){LevelMaze24={"entities":[{"type":"EntityVoid","x":1244,"y":1240,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":826,"y":192,"settings":{"attachto":{"name":"zeroblock1","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":1432,"y":236,"settings":{"row":3,"col":0,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"sideways2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"sideways2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mursus","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mursus","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"zeroblock2","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"tango","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":298,"y":192,"settings":{"attachto":{"name":"tango","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"upperleft1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"upperleft1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"zeroblock2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":970,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":816,"y":144,"settings":{"name":"zeroblock1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":192,"y":1152,"settings":{"name":"rightside1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":1158,"settings":{"attachto":{"name":"rightside1","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":96,"y":1158,"settings":{"attachto":{"name":"leftside2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":1152,"settings":{"name":"leftside2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":720,"y":1008,"settings":{"name":"middy4","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1288,"y":726,"settings":{"attachto":{"name":"rightish2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":576,"y":1008,"settings":{"name":"middy3","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1200,"y":726,"settings":{"attachto":{"name":"rightish1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":192,"y":912,"settings":{"name":"righty2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":918,"settings":{"attachto":{"name":"righty2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":48,"y":912,"settings":{"name":"lefty2","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":96,"y":918,"settings":{"attachto":{"name":"lefty2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":576,"y":768,"settings":{"name":"middy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":624,"y":774,"settings":{"attachto":{"name":"middy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":720,"y":768,"settings":{"name":"middy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":774,"settings":{"attachto":{"name":"middy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":1296,"y":720,"settings":{"name":"rightish2","facing":"left","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1152,"y":720,"settings":{"name":"rightish1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":1014,"settings":{"attachto":{"name":"middy4","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":624,"y":1014,"settings":{"attachto":{"name":"middy3","where":"right"},"pointdir":"right"}},{"type":"EntityTrench","x":728,"y":388,"settings":{"size":{"x":464,"y":64}}},{"type":"EntityTrench","x":100,"y":1444,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":172,"y":1012,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":632,"y":1444,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1348,"y":1156,"settings":{"size":{"x":88,"y":188}}},{"type":"EntityTrench","x":200,"y":1420,"settings":{"size":{"x":424,"y":88}}},{"type":"EntityTrench","x":196,"y":1276,"settings":{"size":{"x":424,"y":88}}},{"type":"EntityTrench","x":8,"y":1348,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":28,"y":1252,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":28,"y":1012,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":172,"y":820,"settings":{"size":{"x":88,"y":40}}},{"type":"EntityTrench","x":700,"y":532,"settings":{"size":{"x":20,"y":184}}},{"type":"EntityTrench","x":28,"y":820,"settings":{"size":{"x":88,"y":40}}},{"type":"EntityTrench","x":4,"y":724,"settings":{"size":{"x":88,"y":92}}},{"type":"EntityTrench","x":196,"y":724,"settings":{"size":{"x":88,"y":92}}},{"type":"EntityTrench","x":28,"y":580,"settings":{"size":{"x":88,"y":136}}},{"type":"EntityTrench","x":172,"y":580,"settings":{"size":{"x":92,"y":136}}},{"type":"EntityTrench","x":724,"y":268,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":24,"y":292,"settings":{"size":{"x":96,"y":136}}},{"type":"EntityTrench","x":4,"y":196,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":172,"y":292,"settings":{"size":{"x":60,"y":136}}},{"type":"EntityTrench","x":100,"y":96,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":532,"y":120,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":532,"y":268,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":1204,"y":268,"settings":{"size":{"x":184,"y":92}}},{"type":"EntityTrench","x":200,"y":76,"settings":{"size":{"x":56,"y":136}}},{"type":"EntityTrench","x":728,"y":120,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":636,"y":96,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":1400,"y":100,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":1496,"y":196,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":1200,"y":120,"settings":{"size":{"x":184,"y":92}}},{"type":"EntityTrench","x":1400,"y":292,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":1204,"y":336,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":624,"y":336,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":628,"y":336,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":532,"y":432,"settings":{"size":{"x":92,"y":92}}},{"type":"EntityTrench","x":700,"y":872,"settings":{"size":{"x":92,"y":80}}},{"type":"EntityTrench","x":552,"y":532,"settings":{"size":{"x":92,"y":184}}},{"type":"EntityTrench","x":628,"y":1108,"settings":{"size":{"x":16,"y":232}}},{"type":"EntityTrench","x":552,"y":872,"settings":{"size":{"x":92,"y":80}}},{"type":"EntityTrench","x":700,"y":1112,"settings":{"size":{"x":92,"y":228}}},{"type":"EntityTrench","x":724,"y":508,"settings":{"size":{"x":476,"y":20}}},{"type":"EntityTrench","x":1300,"y":436,"settings":{"size":{"x":92,"y":88}}},{"type":"EntityTrench","x":1276,"y":532,"settings":{"size":{"x":108,"y":140}}},{"type":"EntityTrench","x":1112,"y":532,"settings":{"size":{"x":112,"y":140}}},{"type":"EntityTrench","x":728,"y":1348,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":1276,"y":816,"settings":{"size":{"x":88,"y":332}}},{"type":"EntityTrench","x":1132,"y":816,"settings":{"size":{"x":88,"y":332}}},{"type":"EntityTrench","x":1152,"y":1348,"settings":{"size":{"x":192,"y":100}}},{"type":"EntityTrench","x":1060,"y":1156,"settings":{"size":{"x":88,"y":188}}}],"layer":[{"name":"collision","width":32,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":32,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,34,0,34,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,0],[0,0,0,0,0,34,0,34,34,0,34,0,0,0,0,0,34,0,34,34,0,34,34,0,34,0,0,0,0,0,0,0],[0,0,0,0,0,34,34,34,34,34,34,0,0,0,0,0,34,34,34,34,34,34,34,34,34,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0],[34,0,0,0,0,34,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0,0,0,0,34,0,0,0,0,34,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[34,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,0,0,0,0],[34,34,0,0,34,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,38,38,38,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,38,38,0,0,0,0,0,0,0,0,0,38,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":64,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0],[0,3,3,3,3,3,3,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,239,240,241,242,239,240,241,242,241,242,0,0,0,0,239,240],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,261,262,263,264,261,262,263,264,263,264,0,0,0,0,261,262],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,239,240,241,242,239,240,241,242,285,286,0,0,0,0,283,284],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,261,262,263,264,261,262,263,264,307,308,0,0,0,0,305,306],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":64,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze24Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze30.js
ig.baked=true;ig.module('game.levels.maze30').requires('impact.image').defines(function(){LevelMaze30={"entities":[{"type":"EntityVoid","x":1244,"y":1240,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":826,"y":192,"settings":{"attachto":{"name":"zeroblock1","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"sideways2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"sideways2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb_clone_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb_clone_clone","where":"up"},"pointdir":"up"}},{"type":"EntityLava","x":200,"y":196,"settings":{"size":{"x":80,"y":14}}},{"type":"EntityLava","x":196,"y":316,"settings":{"size":{"x":20,"y":160}}},{"type":"EntityLava","x":528,"y":168,"settings":{"size":{"x":236,"y":22}}},{"type":"EntityLava","x":76,"y":164,"settings":{"size":{"x":160,"y":22}}},{"type":"EntityLava","x":216,"y":1316,"settings":{"size":{"x":384,"y":22}}},{"type":"EntityLava","x":752,"y":528,"settings":{"size":{"x":424,"y":20}}},{"type":"EntityLava","x":196,"y":292,"settings":{"size":{"x":36,"y":14}}},{"type":"EntityLava","x":2140,"y":720,"settings":{"size":{"x":528,"y":14}}},{"type":"EntityLava","x":196,"y":584,"settings":{"size":{"x":20,"y":272}}},{"type":"EntityBlock","x":1104,"y":148,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"zeroblock2","where":"up"},"pointdir":"up"}},{"type":"EntityLava","x":356,"y":196,"settings":{"size":{"x":72,"y":14}}},{"type":"EntityLava","x":1020,"y":172,"settings":{"size":{"x":72,"y":14}}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb3a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"mb3a","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"leftside1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"leftside1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityLava","x":76,"y":192,"settings":{"size":{"x":20,"y":236}}},{"type":"EntityLava","x":72,"y":580,"settings":{"size":{"x":20,"y":276}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"zeroblock2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":970,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":820,"y":144,"settings":{"name":"zeroblock1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityLava","x":876,"y":172,"settings":{"size":{"x":76,"y":16}}},{"type":"EntityBlock","x":192,"y":1152,"settings":{"name":"rightside1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":1158,"settings":{"attachto":{"name":"rightside1","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":96,"y":1158,"settings":{"attachto":{"name":"leftside2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":1152,"settings":{"name":"leftside2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":720,"y":1008,"settings":{"name":"middy4","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1288,"y":726,"settings":{"attachto":{"name":"rightish2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":576,"y":1008,"settings":{"name":"middy3","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1200,"y":726,"settings":{"attachto":{"name":"square1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":192,"y":912,"settings":{"name":"marcie1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":918,"settings":{"attachto":{"name":"marcie1","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":48,"y":912,"settings":{"name":"marcie2","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":96,"y":918,"settings":{"attachto":{"name":"marcie2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":576,"y":768,"settings":{"name":"middy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":624,"y":774,"settings":{"attachto":{"name":"middy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":720,"y":768,"settings":{"name":"middy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":774,"settings":{"attachto":{"name":"middy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":1296,"y":720,"settings":{"name":"rightish2","facing":"left","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1152,"y":720,"settings":{"name":"square1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":1014,"settings":{"attachto":{"name":"middy4","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":624,"y":1014,"settings":{"attachto":{"name":"middy3","where":"right"},"pointdir":"right"}},{"type":"EntityLava","x":1352,"y":1140,"settings":{"size":{"x":16,"y":220}}},{"type":"EntityLava","x":2784,"y":620,"settings":{"size":{"x":16,"y":432}}},{"type":"EntityLava","x":196,"y":1024,"settings":{"size":{"x":20,"y":72}}},{"type":"EntityLava","x":720,"y":872,"settings":{"size":{"x":16,"y":80}}},{"type":"EntityLava","x":1180,"y":532,"settings":{"size":{"x":16,"y":140}}},{"type":"EntityLava","x":1180,"y":820,"settings":{"size":{"x":16,"y":328}}},{"type":"EntityLava","x":1300,"y":828,"settings":{"size":{"x":16,"y":320}}},{"type":"EntityLava","x":728,"y":528,"settings":{"size":{"x":16,"y":184}}},{"type":"EntityLava","x":604,"y":428,"settings":{"size":{"x":16,"y":288}}},{"type":"EntityLava","x":72,"y":1016,"settings":{"size":{"x":20,"y":84}}},{"type":"EntityLava","x":720,"y":1340,"settings":{"size":{"x":16,"y":100}}},{"type":"EntityLava","x":608,"y":868,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":604,"y":1104,"settings":{"size":{"x":16,"y":236}}},{"type":"EntityLava","x":196,"y":1256,"settings":{"size":{"x":16,"y":84}}},{"type":"EntityLava","x":72,"y":1260,"settings":{"size":{"x":16,"y":196}}},{"type":"EntityLava","x":92,"y":1444,"settings":{"size":{"x":636,"y":22}}},{"type":"EntityLava","x":1156,"y":1348,"settings":{"size":{"x":192,"y":22}}},{"type":"EntityLava","x":1320,"y":1120,"settings":{"size":{"x":44,"y":22}}},{"type":"EntityLava","x":604,"y":412,"settings":{"size":{"x":712,"y":18}}},{"type":"EntityLava","x":532,"y":292,"settings":{"size":{"x":236,"y":20}}},{"type":"EntityLava","x":2640,"y":1252,"settings":{"size":{"x":196,"y":20}}},{"type":"EntityLava","x":1300,"y":428,"settings":{"size":{"x":24,"y":232}}},{"type":"EntityLava","x":724,"y":1108,"settings":{"size":{"x":16,"y":228}}},{"type":"EntityLava","x":1136,"y":1148,"settings":{"size":{"x":16,"y":220}}},{"type":"EntityLava","x":1136,"y":1124,"settings":{"size":{"x":40,"y":22}}},{"type":"EntityVoid","x":772,"y":1024,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":556,"y":1024,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityLava","x":876,"y":292,"settings":{"size":{"x":76,"y":16}}},{"type":"EntityLava","x":1020,"y":292,"settings":{"size":{"x":76,"y":16}}},{"type":"EntityLava","x":1156,"y":176,"settings":{"size":{"x":1104,"y":14}}},{"type":"EntityLava","x":1156,"y":292,"settings":{"size":{"x":1000,"y":18}}},{"type":"EntityLava","x":2260,"y":608,"settings":{"size":{"x":524,"y":18}}},{"type":"EntityLava","x":2260,"y":176,"settings":{"size":{"x":16,"y":432}}},{"type":"EntityLava","x":2672,"y":724,"settings":{"size":{"x":16,"y":324}}},{"type":"EntityLava","x":2136,"y":316,"settings":{"size":{"x":24,"y":400}}},{"type":"EntityLava","x":2840,"y":1056,"settings":{"size":{"x":24,"y":192}}},{"type":"EntityLava","x":2616,"y":1060,"settings":{"size":{"x":24,"y":192}}},{"type":"EntityLava","x":2600,"y":1032,"settings":{"size":{"x":64,"y":20}}},{"type":"EntityLava","x":2800,"y":1028,"settings":{"size":{"x":64,"y":20}}},{"type":"EntitySpeedregion","x":2260,"y":628,"settings":{"size":{"x":424,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":2692,"y":724,"settings":{"size":{"x":88,"y":328},"ground":"icy"}},{"type":"EntitySpeedregion","x":1204,"y":532,"settings":{"size":{"x":88,"y":616},"ground":"icy"}},{"type":"EntitySpeedregion","x":2164,"y":288,"settings":{"size":{"x":88,"y":332},"ground":"icy"}},{"type":"EntitySpeedregion","x":1496,"y":196,"settings":{"size":{"x":660,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":196,"y":1348,"settings":{"size":{"x":424,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":196,"y":196,"settings":{"size":{"x":420,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":724,"y":436,"settings":{"size":{"x":472,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":100,"y":292,"settings":{"size":{"x":88,"y":424},"ground":"icy"}},{"type":"EntitySpeedregion","x":100,"y":820,"settings":{"size":{"x":88,"y":524},"ground":"icy"}},{"type":"EntitySpeedregion","x":724,"y":196,"settings":{"size":{"x":660,"y":88},"ground":"icy"}},{"type":"EntitySpeedregion","x":628,"y":532,"settings":{"size":{"x":88,"y":812},"ground":"icy"}},{"type":"EntityTeleport","x":2728,"y":1144,"settings":{"row":3,"col":1}},{"type":"EntityVoid","x":244,"y":1168,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":1132,"y":736,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":1168,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":1348,"y":736,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":244,"y":496,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":244,"y":928,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":28,"y":928,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":496,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":1120,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":304,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":448,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":836,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":976,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":304,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":448,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":832,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":976,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":1120,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":772,"y":784,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":556,"y":784,"settings":{"turn":{"right":{"to":"right"}},"type":2}}],"layer":[{"name":"collision","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"background","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14]]},{"name":"main","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":128,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":128,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,0,0,0,0,17,17,17,17,17,17,17,17,18,17,17,17,17,18,17,18,17,17,18,17,17,17,18,17,18,18,17,18,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,45,45,45,45,45,45,45,45,46,45,45,45,45,46,45,46,45,45,46,45,45,45,46,45,46,46,45,46,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,73,73,73,73,73,73,73,73,74,73,73,73,73,74,73,74,73,73,74,73,73,73,74,73,74,74,73,74,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,102,0,0,0,0,101,101,101,101,101,101,101,101,102,101,101,101,101,102,101,102,101,101,102,101,101,101,102,101,102,102,101,102,0,0,0,0,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,98,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze30Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze31.js
ig.baked=true;ig.module('game.levels.maze31').requires('impact.image').defines(function(){LevelMaze31={"entities":[{"type":"EntityVoid","x":1240,"y":1240,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":192,"settings":{"attachto":{"name":"zeroblock1","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":2680,"y":184,"settings":{"row":3,"col":2,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"sideways2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"sideways2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"barp","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"barp","where":"up"},"pointdir":"up"}},{"type":"EntityLava","x":620,"y":412,"settings":{"size":{"x":104,"y":16}}},{"type":"EntityLava","x":200,"y":196,"settings":{"size":{"x":48,"y":14}}},{"type":"EntityLava","x":536,"y":268,"settings":{"size":{"x":80,"y":14}}},{"type":"EntityLava","x":596,"y":428,"settings":{"size":{"x":24,"y":100}}},{"type":"EntityLava","x":172,"y":292,"settings":{"size":{"x":20,"y":132}}},{"type":"EntityLava","x":620,"y":168,"settings":{"size":{"x":108,"y":22}}},{"type":"EntityLava","x":76,"y":164,"settings":{"size":{"x":128,"y":22}}},{"type":"EntityLava","x":196,"y":1340,"settings":{"size":{"x":424,"y":22}}},{"type":"EntityLava","x":724,"y":508,"settings":{"size":{"x":472,"y":20}}},{"type":"EntityLava","x":1396,"y":172,"settings":{"size":{"x":96,"y":14}}},{"type":"EntityLava","x":1492,"y":484,"settings":{"size":{"x":280,"y":14}}},{"type":"EntityLava","x":204,"y":268,"settings":{"size":{"x":36,"y":14}}},{"type":"EntityLava","x":532,"y":196,"settings":{"size":{"x":84,"y":14}}},{"type":"EntityLava","x":728,"y":268,"settings":{"size":{"x":40,"y":16}}},{"type":"EntityLava","x":1204,"y":196,"settings":{"size":{"x":184,"y":14}}},{"type":"EntityLava","x":196,"y":716,"settings":{"size":{"x":20,"y":96}}},{"type":"EntityLava","x":172,"y":592,"settings":{"size":{"x":20,"y":124}}},{"type":"EntityLava","x":80,"y":192,"settings":{"size":{"x":20,"y":96}}},{"type":"EntityLava","x":76,"y":716,"settings":{"size":{"x":20,"y":96}}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"zeroblock2","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"diff","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":298,"y":192,"settings":{"attachto":{"name":"diff","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"leftside1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"leftside1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityLava","x":100,"y":292,"settings":{"size":{"x":20,"y":132}}},{"type":"EntityLava","x":100,"y":588,"settings":{"size":{"x":20,"y":128}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"zeroblock2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":970,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":816,"y":144,"settings":{"name":"zeroblock1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityLava","x":736,"y":196,"settings":{"size":{"x":36,"y":16}}},{"type":"EntityBlock","x":192,"y":1152,"settings":{"name":"rightside1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":1158,"settings":{"attachto":{"name":"rightside1","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":96,"y":1158,"settings":{"attachto":{"name":"leftside2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":1152,"settings":{"name":"leftside2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":720,"y":1008,"settings":{"name":"middy4","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1284,"y":726,"settings":{"attachto":{"name":"rightish2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":576,"y":1008,"settings":{"name":"middy3","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1200,"y":726,"settings":{"attachto":{"name":"rightish1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":196,"y":912,"settings":{"name":"mb3b","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":188,"y":918,"settings":{"attachto":{"name":"mb3b","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":48,"y":912,"settings":{"name":"mb3a","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":100,"y":918,"settings":{"attachto":{"name":"mb3a","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":576,"y":768,"settings":{"name":"middy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":624,"y":774,"settings":{"attachto":{"name":"middy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":728,"y":768,"settings":{"name":"middy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":720,"y":770,"settings":{"attachto":{"name":"middy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":1296,"y":720,"settings":{"name":"rightish2","facing":"left","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1152,"y":720,"settings":{"name":"rightish1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":1014,"settings":{"attachto":{"name":"middy4","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":624,"y":1014,"settings":{"attachto":{"name":"middy3","where":"right"},"pointdir":"right"}},{"type":"EntityLava","x":2592,"y":76,"settings":{"size":{"x":192,"y":16}}},{"type":"EntityLava","x":1204,"y":532,"settings":{"size":{"x":16,"y":136}}},{"type":"EntityLava","x":172,"y":1012,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":704,"y":876,"settings":{"size":{"x":16,"y":76}}},{"type":"EntityLava","x":1276,"y":532,"settings":{"size":{"x":16,"y":136}}},{"type":"EntityLava","x":1204,"y":820,"settings":{"size":{"x":16,"y":328}}},{"type":"EntityLava","x":1276,"y":824,"settings":{"size":{"x":16,"y":328}}},{"type":"EntityLava","x":700,"y":532,"settings":{"size":{"x":16,"y":184}}},{"type":"EntityLava","x":628,"y":532,"settings":{"size":{"x":16,"y":184}}},{"type":"EntityLava","x":100,"y":1252,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":100,"y":820,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":100,"y":1016,"settings":{"size":{"x":16,"y":80}}},{"type":"EntityLava","x":172,"y":820,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":724,"y":1340,"settings":{"size":{"x":76,"y":100}}},{"type":"EntityLava","x":628,"y":872,"settings":{"size":{"x":16,"y":80}}},{"type":"EntityLava","x":628,"y":1108,"settings":{"size":{"x":16,"y":232}}},{"type":"EntityLava","x":96,"y":1444,"settings":{"size":{"x":92,"y":22}}},{"type":"EntityLava","x":176,"y":1252,"settings":{"size":{"x":16,"y":88}}},{"type":"EntityLava","x":76,"y":1340,"settings":{"size":{"x":16,"y":100}}},{"type":"EntityLava","x":200,"y":1420,"settings":{"size":{"x":424,"y":22}}},{"type":"EntityLava","x":1156,"y":1348,"settings":{"size":{"x":192,"y":22}}},{"type":"EntityLava","x":1292,"y":1128,"settings":{"size":{"x":52,"y":22}}},{"type":"EntityLava","x":1204,"y":268,"settings":{"size":{"x":188,"y":14}}},{"type":"EntityLava","x":724,"y":432,"settings":{"size":{"x":472,"y":18}}},{"type":"EntityLava","x":624,"y":292,"settings":{"size":{"x":104,"y":20}}},{"type":"EntityLava","x":1468,"y":292,"settings":{"size":{"x":20,"y":184}}},{"type":"EntityLava","x":1492,"y":188,"settings":{"size":{"x":24,"y":100}}},{"type":"EntityLava","x":704,"y":1116,"settings":{"size":{"x":16,"y":220}}},{"type":"EntityLava","x":1132,"y":1148,"settings":{"size":{"x":16,"y":220}}},{"type":"EntityLava","x":608,"y":1444,"settings":{"size":{"x":120,"y":64}}},{"type":"EntityLava","x":1152,"y":1124,"settings":{"size":{"x":52,"y":22}}},{"type":"EntityVoid","x":776,"y":1024,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":28,"y":1164,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityLava","x":1200,"y":412,"settings":{"size":{"x":104,"y":16}}},{"type":"EntityLava","x":1348,"y":1148,"settings":{"size":{"x":16,"y":220}}},{"type":"EntityLava","x":2572,"y":96,"settings":{"size":{"x":16,"y":192}}},{"type":"EntityLava","x":2788,"y":96,"settings":{"size":{"x":16,"y":192}}},{"type":"EntityLava","x":1392,"y":292,"settings":{"size":{"x":20,"y":180}}},{"type":"EntityLava","x":2588,"y":292,"settings":{"size":{"x":72,"y":184}}},{"type":"EntityLava","x":1300,"y":428,"settings":{"size":{"x":24,"y":100}}},{"type":"EntityLava","x":1364,"y":476,"settings":{"size":{"x":24,"y":100}}},{"type":"EntityLava","x":2452,"y":556,"settings":{"size":{"x":184,"y":14}}},{"type":"EntityLava","x":1492,"y":556,"settings":{"size":{"x":280,"y":14}}},{"type":"EntityLava","x":1388,"y":580,"settings":{"size":{"x":100,"y":14}}},{"type":"EntityLava","x":2216,"y":484,"settings":{"size":{"x":132,"y":14}}},{"type":"EntityLava","x":2740,"y":480,"settings":{"size":{"x":36,"y":100}}},{"type":"EntityLava","x":2716,"y":292,"settings":{"size":{"x":64,"y":184}}},{"type":"EntityLava","x":2352,"y":464,"settings":{"size":{"x":96,"y":14}}},{"type":"EntityLava","x":2456,"y":488,"settings":{"size":{"x":184,"y":14}}},{"type":"EntityLava","x":2352,"y":580,"settings":{"size":{"x":96,"y":14}}},{"type":"EntityLava","x":2636,"y":580,"settings":{"size":{"x":96,"y":14}}},{"type":"EntityLava","x":2216,"y":556,"settings":{"size":{"x":136,"y":20}}},{"type":"EntityVoid","x":1132,"y":736,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":1348,"y":736,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":556,"y":784,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":780,"y":784,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":556,"y":1024,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":928,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":492,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":248,"y":1168,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":248,"y":928,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":244,"y":496,"settings":{"turn":{"left":{"to":"left"}},"type":2}},{"type":"EntityVoid","x":448,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":304,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":832,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":976,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":1120,"y":124,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":1120,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":308,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":448,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":836,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":980,"y":340,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityDagogoette","x":1948,"y":577,"settings":{"facing":"right","movenext":{"start":"march"}}},{"type":"EntityVoid","x":2120,"y":448,"settings":{"type":2,"turn":{"up":{"to":"left"}}}},{"type":"EntityVoid","x":1844,"y":448,"settings":{"type":2,"turn":{"right":{"to":"down"}}}},{"type":"EntityVoid","x":1844,"y":592,"settings":{"type":2,"turn":{"down":{"to":"right"}}}},{"type":"EntityVoid","x":2124,"y":592,"settings":{"type":2,"turn":{"left":{"to":"up"}}}}],"layer":[{"name":"collision","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"background","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"3","tilesize":48,"foreground":false,"data":[[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14],[14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14,14]]},{"name":"topbackground","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"2","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0],[0,0,0,0,0,0,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,13,13,13,0,13,13,13,13,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,13,0,0,0,0,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0],[0,0,0,13,0,0,0,0,0,13,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,13,0,0,0,0,0,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,13,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,13,0,0,0,13,13,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,0,0,0,13,13,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,13,13,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,13,13,0,13,13,13,0,13,0,0,0,0,0,0,0,13,13,13,0,0,0,0,13,13,13,0,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,13,13,13,0,0,0,0,13,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,13,13,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,13,0,0,0,13,0,0,0,0,0,0,0,0,13,13,0,0,0,13,13,0,0,0,0,0,0,13,0,0,13,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0],[0,0,0,0,0,13,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,13,0,0],[0,0,0,0,0,0,13,0,0,13,0,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0],[0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,13,13,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,13,13,13,13,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,13,0,0,0,13,13,13,13,13,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,13,13,13,13,13,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,13,13,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,13,13,0,13,0,0,13,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,0,13,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,13,0,0,0,13,0,13],[0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,13,0,0,13,0,13,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,13,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":64,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,45,45,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,45,45,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":128,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,242,239,281,281,281,281,242,239,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,232,233,0,0,0,0,232,233,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,308,305,258,258,258,258,308,305,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,281,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,258,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,262,263,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,256,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":128,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,270,271,271,271,271,271,271,271,271,271,271,271,271,271,270,271,271,271,0,0,0,0,270,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,270,271,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,298,299,299,299,299,299,299,299,299,299,299,299,299,299,298,299,299,299,0,0,0,0,298,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,298,299,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,242,242,243,242,242,243,242,242,243,242,242,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,270,270,270,270,270,270,270,270,271,270,270,270,271,270,270,270,270,270,271,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,270,270,271,271,270,270,271,270,270,271,270,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,298,298,298,298,298,298,298,298,299,298,298,298,299,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,270,298,270,271,270,271,271,271,271,271,271,271,271,299,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,299,299,299,299,299,299,299,299,271,270,270,270,270,270,270,270,271,0,0,0,0,270,270,270,270,270,270,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,298,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,299,271,270,271,270,270,298,298,299,299,298,298,298,298,298,298,298,299,0,0,0,0,298,298,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,270,270,298,299,298,299,298,299,298,298,298,299,270,271,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,298,298,298,298,298,298,298,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,270,271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,298,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze31Resources=[new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-shadows3.png'),new ig.Image('media/tileset-trenchs.png')];});

// lib/game/levels/maze32.js
ig.baked=true;ig.module('game.levels.maze32').requires('impact.image').defines(function(){LevelMaze32={"entities":[{"type":"EntityVoid","x":1244,"y":1240,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":192,"settings":{"attachto":{"name":"zeroblock1","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":2204,"y":1196,"settings":{"row":3,"col":3,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"sideways2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"sideways2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb_clone_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb_clone_clone","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"zeroblock2","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"murray3","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":298,"y":192,"settings":{"attachto":{"name":"murray3","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"leftside1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"leftside1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"zeroblock2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":970,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":816,"y":144,"settings":{"name":"zeroblock1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":192,"y":1152,"settings":{"name":"rightside1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":1158,"settings":{"attachto":{"name":"rightside1","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":96,"y":1158,"settings":{"attachto":{"name":"leftside2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":1152,"settings":{"name":"leftside2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":720,"y":1008,"settings":{"name":"middy4","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1288,"y":726,"settings":{"attachto":{"name":"rightish2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":576,"y":1008,"settings":{"name":"middy3","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1200,"y":726,"settings":{"attachto":{"name":"rightish1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":192,"y":912,"settings":{"name":"henry2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":918,"settings":{"attachto":{"name":"henry2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":48,"y":912,"settings":{"name":"henry1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":96,"y":918,"settings":{"attachto":{"name":"henry1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":576,"y":768,"settings":{"name":"middy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":624,"y":774,"settings":{"attachto":{"name":"middy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":720,"y":768,"settings":{"name":"middy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":774,"settings":{"attachto":{"name":"middy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":1296,"y":720,"settings":{"name":"rightish2","facing":"left","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1152,"y":720,"settings":{"name":"rightish1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":1014,"settings":{"attachto":{"name":"middy4","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":624,"y":1014,"settings":{"attachto":{"name":"middy3","where":"right"},"pointdir":"right"}},{"type":"EntityVoid","x":1132,"y":736,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":244,"y":1168,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":1352,"y":732,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":772,"y":784,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":776,"y":1024,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":244,"y":928,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":244,"y":496,"settings":{"type":2,"turn":{"left":{"to":"left"}}}},{"type":"EntityVoid","x":556,"y":784,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":556,"y":1028,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":496,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":928,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":28,"y":1168,"settings":{"turn":{"right":{"to":"right"}},"type":2}},{"type":"EntityVoid","x":1120,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":976,"y":336,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":1124,"y":336,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":832,"y":336,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":448,"y":336,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":300,"y":336,"settings":{"type":2,"turn":{"up":{"to":"up"}}}},{"type":"EntityVoid","x":976,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":832,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":448,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityVoid","x":304,"y":128,"settings":{"type":2,"turn":{"down":{"to":"down"}}}},{"type":"EntityTrench","x":2116,"y":1296,"settings":{"size":{"x":188,"y":42}}},{"type":"EntityTrench","x":1104,"y":1152,"settings":{"size":{"x":44,"y":192}}},{"type":"EntityTrench","x":2112,"y":1060,"settings":{"size":{"x":188,"y":42}}},{"type":"EntityTrench","x":2056,"y":1108,"settings":{"size":{"x":52,"y":188}}},{"type":"EntityTrench","x":1348,"y":1152,"settings":{"size":{"x":40,"y":192}}},{"type":"EntityTrench","x":1280,"y":776,"settings":{"size":{"x":60,"y":374}}},{"type":"EntityTrench","x":1156,"y":776,"settings":{"size":{"x":60,"y":372}}},{"type":"EntityTrench","x":1172,"y":528,"settings":{"size":{"x":44,"y":184}}},{"type":"EntityTrench","x":1096,"y":1156,"settings":{"size":{"x":52,"y":184}}},{"type":"EntityTrench","x":1156,"y":1348,"settings":{"size":{"x":188,"y":42}}},{"type":"EntityTrench","x":1472,"y":296,"settings":{"size":{"x":44,"y":172}}},{"type":"EntityTrench","x":1280,"y":528,"settings":{"size":{"x":48,"y":184}}},{"type":"EntityTrench","x":1364,"y":296,"settings":{"size":{"x":44,"y":184}}},{"type":"EntityTrench","x":704,"y":532,"settings":{"size":{"x":44,"y":228}}},{"type":"EntityTrench","x":596,"y":532,"settings":{"size":{"x":44,"y":228}}},{"type":"EntityTrench","x":588,"y":1064,"settings":{"size":{"x":48,"y":268}}},{"type":"EntityTrench","x":704,"y":1064,"settings":{"size":{"x":48,"y":276}}},{"type":"EntityTrench","x":704,"y":820,"settings":{"size":{"x":52,"y":184}}},{"type":"EntityTrench","x":588,"y":820,"settings":{"size":{"x":52,"y":184}}},{"type":"EntityTrench","x":580,"y":432,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":724,"y":416,"settings":{"size":{"x":472,"y":32}}},{"type":"EntityTrench","x":632,"y":392,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":1200,"y":392,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":1300,"y":436,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":1352,"y":480,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":1396,"y":576,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":1396,"y":152,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":1488,"y":196,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":1492,"y":472,"settings":{"size":{"x":284,"y":24}}},{"type":"EntityTrench","x":1488,"y":560,"settings":{"size":{"x":284,"y":36}}},{"type":"EntityTrench","x":2216,"y":456,"settings":{"size":{"x":132,"y":40}}},{"type":"EntityTrench","x":2216,"y":560,"settings":{"size":{"x":132,"y":40}}},{"type":"EntityTrench","x":2452,"y":560,"settings":{"size":{"x":184,"y":36}}},{"type":"EntityTrench","x":2452,"y":480,"settings":{"size":{"x":184,"y":16}}},{"type":"EntityTrench","x":2588,"y":292,"settings":{"size":{"x":68,"y":180}}},{"type":"EntityTrench","x":2720,"y":296,"settings":{"size":{"x":64,"y":184}}},{"type":"EntityTrench","x":2356,"y":576,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":2644,"y":580,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":2592,"y":56,"settings":{"size":{"x":192,"y":36}}},{"type":"EntityTrench","x":2520,"y":104,"settings":{"size":{"x":68,"y":184}}},{"type":"EntityTrench","x":2788,"y":92,"settings":{"size":{"x":520,"y":68}}},{"type":"EntityTrench","x":2792,"y":224,"settings":{"size":{"x":520,"y":64}}},{"type":"EntityTrench","x":3312,"y":104,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":2736,"y":484,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":3412,"y":148,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":3272,"y":624,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":3412,"y":624,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":3408,"y":1156,"settings":{"size":{"x":40,"y":92}}},{"type":"EntityTrench","x":2312,"y":1108,"settings":{"size":{"x":420,"y":60}}},{"type":"EntityTrench","x":2312,"y":1232,"settings":{"size":{"x":420,"y":64}}},{"type":"EntityTrench","x":3316,"y":1248,"settings":{"size":{"x":92,"y":36}}},{"type":"EntityTrench","x":2836,"y":1148,"settings":{"size":{"x":472,"y":20}}},{"type":"EntityTrench","x":2840,"y":1232,"settings":{"size":{"x":472,"y":60}}},{"type":"EntityTrench","x":3392,"y":716,"settings":{"size":{"x":40,"y":424}}},{"type":"EntityTrench","x":3304,"y":724,"settings":{"size":{"x":24,"y":424}}},{"type":"EntityTrench","x":3392,"y":244,"settings":{"size":{"x":20,"y":376}}},{"type":"EntityTrench","x":3308,"y":244,"settings":{"size":{"x":20,"y":376}}},{"type":"EntityTrench","x":1160,"y":176,"settings":{"size":{"x":228,"y":32}}},{"type":"EntityTrench","x":1160,"y":272,"settings":{"size":{"x":228,"y":28}}},{"type":"EntityTrench","x":1016,"y":272,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":1016,"y":176,"settings":{"size":{"x":84,"y":32}}},{"type":"EntityTrench","x":868,"y":176,"settings":{"size":{"x":84,"y":32}}},{"type":"EntityTrench","x":868,"y":272,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":728,"y":272,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":724,"y":172,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":632,"y":152,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":632,"y":292,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":536,"y":272,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":536,"y":172,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":104,"y":152,"settings":{"size":{"x":88,"y":36}}},{"type":"EntityTrench","x":56,"y":196,"settings":{"size":{"x":36,"y":88}}},{"type":"EntityTrench","x":80,"y":292,"settings":{"size":{"x":32,"y":180}}},{"type":"EntityTrench","x":176,"y":288,"settings":{"size":{"x":20,"y":180}}},{"type":"EntityTrench","x":176,"y":536,"settings":{"size":{"x":32,"y":180}}},{"type":"EntityTrench","x":80,"y":536,"settings":{"size":{"x":32,"y":180}}},{"type":"EntityTrench","x":80,"y":820,"settings":{"size":{"x":32,"y":92}}},{"type":"EntityTrench","x":172,"y":820,"settings":{"size":{"x":36,"y":92}}},{"type":"EntityTrench","x":176,"y":968,"settings":{"size":{"x":32,"y":176}}},{"type":"EntityTrench","x":76,"y":968,"settings":{"size":{"x":36,"y":176}}},{"type":"EntityTrench","x":176,"y":1204,"settings":{"size":{"x":36,"y":136}}},{"type":"EntityTrench","x":56,"y":1344,"settings":{"size":{"x":36,"y":96}}},{"type":"EntityTrench","x":76,"y":1208,"settings":{"size":{"x":36,"y":132}}},{"type":"EntityTrench","x":724,"y":1348,"settings":{"size":{"x":36,"y":88}}},{"type":"EntityTrench","x":96,"y":1444,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":628,"y":1444,"settings":{"size":{"x":92,"y":42}}},{"type":"EntityTrench","x":196,"y":1424,"settings":{"size":{"x":424,"y":34}}},{"type":"EntityTrench","x":196,"y":1344,"settings":{"size":{"x":424,"y":16}}},{"type":"EntityTrench","x":724,"y":504,"settings":{"size":{"x":472,"y":20}}},{"type":"EntityTrench","x":196,"y":176,"settings":{"size":{"x":88,"y":32}}},{"type":"EntityTrench","x":344,"y":176,"settings":{"size":{"x":84,"y":32}}},{"type":"EntityTrench","x":344,"y":272,"settings":{"size":{"x":84,"y":36}}},{"type":"EntityTrench","x":196,"y":268,"settings":{"size":{"x":88,"y":20}}}],"layer":[{"name":"stars","width":80,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/hubble01.jpg","repeat":true,"distance":"2","tilesize":48,"foreground":false,"data":[[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32],[33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32],[33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,16,155,156,157,158,159,160],[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,17,1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,32,16,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,33,17,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,48,32,28,29,30,31,32],[33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,33,34,35,36,37,38,39,49,33,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,64,48,44,45,46,47,48],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,49,50,51,52,53,54,55,65,49,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,80,64,60,61,62,63,64],[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,65,66,67,68,69,70,71,81,65,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,96,80,76,77,78,79,80],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,81,82,83,84,85,86,87,97,81,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,112,96,92,93,94,95,96],[97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,97,98,99,100,101,102,103,113,97,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,128,112,108,109,110,111,112],[113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,113,114,115,116,117,118,119,129,113,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,144,128,124,125,126,127,128],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,129,130,131,132,133,134,135,145,129,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,160,144,140,141,142,143,144],[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,145,146,147,148,149,150,151,152,145,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,159,160,156,157,158,159,160],[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,1,2,3,4,5,6,7,8,9,10,11,12,13,14,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],[17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,17,18,19,20,21,22,23,24,25,26,27,28,29,30,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32]]},{"name":"collision","width":80,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":80,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,0,0,0,45,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,45,0,45,0,45,0,0,0,0,0,45,45,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,45,0,45,0,45,0,0,0,0,0,45,45,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,45,0,0,0,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[45,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[45,45,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"trenches","width":160,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-trenchs.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,23,23,23,23,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,242,242,242,242,242,242,243,242,242,242,242,242,243,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,326,326,326,326,326,326,327,326,326,326,326,326,327,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,242,243,243,244,0,0,241,242,242,243,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,242,243,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,270,326,326,271,272,0,0,269,270,326,326,271,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,326,327,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241,242,270,272,0,0,269,272,0,0,297,300,0,0,269,271,243,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,242,242,242,242,242,242,242,242,242,242,243,269,270,270,300,0,0,269,300,0,0,297,328,0,0,297,271,271,272,242,242,242,242,242,243,0,0,0,0,242,242,242,242,242,242,242,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,327,297,298,270,272,0,0,269,272,0,0,297,300,0,0,269,271,299,300,326,326,326,326,326,327,0,0,0,0,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,270,300,0,0,297,300,0,0,297,328,0,0,297,271,327,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,297,270,270,270,270,300,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,328,0,0,325,326,327,327,327,328,0,0,325,328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,242,242,242,242,243,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,242,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,326,326,326,326,327,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,326,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269,272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,242,243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,326,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"shadow","width":160,"height":64,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-shadows3.png","repeat":false,"distance":"1","tilesize":24,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,239,240,280,280,280,280,280,280,280,281,241,242,0,0,0,0,0,0,0,0,0,0,239,240,280,280,280,280,280,280,280,280,280,280,280,280,280,281,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,261,262,302,302,302,302,302,302,302,303,263,264,0,0,0,0,0,0,0,0,0,0,261,262,302,302,302,302,302,302,302,302,302,302,302,302,302,303,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,231,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,0,0,305,306,307,308,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,3,3,3,3,3,3,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,283,284,236,236,236,236,236,236,236,237,285,286,0,0,0,0,0,0,0,0,0,0,283,284,236,236,236,237,236,236,236,236,236,236,236,236,236,237,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,305,306,258,258,258,258,258,258,258,259,307,308,0,0,0,0,0,0,0,0,0,0,305,306,258,258,258,259,258,258,258,258,258,258,258,258,258,259,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,280,280,280,280,280,280,280,280,280,280,280,280,280,281,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,210,258,258,258,258,258,258,211,210,258,258,258,258,258,258,211,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,232,0,0,0,0,0,0,233,232,0,0,0,0,0,0,233,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,308,0,0,0,0,0,0,233,254,0,0,0,0,0,0,305,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,233,254,0,0,239,242,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,254,0,0,233,254,0,0,233,254,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,254,0,0,233,254,0,0,233,254,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,254,0,0,305,308,0,0,233,254,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,242,0,0,233,254,0,0,0,0,0,0,233,254,0,0,239,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,254,0,0,255,254,0,0,0,0,0,0,255,254,0,0,255,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,276,280,280,277,276,280,280,280,280,280,280,277,276,280,280,277,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,258,259,258,258,258,258,258,258,258,258,258,258,258,258,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[239,240,241,242,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[261,262,263,264,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[233,234,0,0,0,0,0,0,0,0,231,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,239,240,241,242,239,240,241,242,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[255,256,0,0,0,0,0,0,0,0,253,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,261,262,263,264,261,262,263,264,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[283,284,285,286,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[305,306,307,308,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,239,240,241,242,239,240,241,242,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,261,262,263,264,261,262,263,264,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239,240,241,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,261,262,263,264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,283,284,285,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,305,306,307,308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]}]};LevelMaze32Resources=[new ig.Image('media/hubble01.jpg'),new ig.Image('media/tileset-gorebag2.png'),new ig.Image('media/tileset-trenchs.png'),new ig.Image('media/tileset-shadows3.png')];});

// lib/game/levels/maze33.js
ig.baked=true;ig.module('game.levels.maze33').requires('impact.image').defines(function(){LevelMaze33={"entities":[{"type":"EntityVoid","x":1244,"y":1240,"settings":{"name":"pspawn"}},{"type":"EntityBlock","x":432,"y":144,"settings":{"name":"mb2","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":280,"settings":{"attachto":{"name":"fourblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":432,"y":288,"settings":{"name":"mb","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":826,"y":192,"settings":{"attachto":{"name":"zeroblock1","where":"down"},"pointdir":"down"}},{"type":"EntityTeleport","x":2200,"y":1196,"settings":{"row":3,"col":4,"size":{"x":12,"y":12}}},{"type":"EntityBlock","x":960,"y":144,"settings":{"name":"oneblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1104,"y":288,"settings":{"name":"fourblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":438,"y":192,"settings":{"attachto":{"name":"mb2","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":438,"y":280,"settings":{"attachto":{"name":"mb","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":192,"y":480,"settings":{"name":"sideways2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":486,"settings":{"attachto":{"name":"sideways2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":288,"y":288,"settings":{"name":"mb_clone_clone","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":280,"settings":{"attachto":{"name":"mb_clone_clone","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":1104,"y":144,"settings":{"name":"threeblock","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1110,"y":192,"settings":{"attachto":{"name":"threeblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":960,"y":288,"settings":{"name":"twoblock","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":822,"y":280,"settings":{"attachto":{"name":"zeroblock2","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":288,"y":144,"settings":{"name":"mb3a","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":294,"y":192,"settings":{"attachto":{"name":"mb3a","where":"down"},"pointdir":"down"}},{"type":"EntitySpikes","x":96,"y":486,"settings":{"attachto":{"name":"leftside1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":480,"settings":{"name":"leftside1","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":816,"y":288,"settings":{"name":"zeroblock2","facing":"up","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":970,"y":280,"settings":{"attachto":{"name":"twoblock","where":"up"},"pointdir":"up"}},{"type":"EntityBlock","x":816,"y":144,"settings":{"name":"zeroblock1","facing":"down","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":966,"y":192,"settings":{"attachto":{"name":"oneblock","where":"down"},"pointdir":"down"}},{"type":"EntityBlock","x":192,"y":1152,"settings":{"name":"rightside1","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":1158,"settings":{"attachto":{"name":"rightside1","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":96,"y":1158,"settings":{"attachto":{"name":"leftside2","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":48,"y":1152,"settings":{"name":"leftside2","facing":"right","movenext":{"start":"march"}}},{"type":"EntityBlock","x":720,"y":1008,"settings":{"name":"middy4","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1288,"y":726,"settings":{"attachto":{"name":"rightish2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":576,"y":1008,"settings":{"name":"middy3","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":1200,"y":726,"settings":{"attachto":{"name":"rightish1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":192,"y":912,"settings":{"name":"banana","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":184,"y":918,"settings":{"attachto":{"name":"banana","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":48,"y":912,"settings":{"name":"cherry","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":96,"y":918,"settings":{"attachto":{"name":"cherry","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":576,"y":768,"settings":{"name":"middy1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":624,"y":774,"settings":{"attachto":{"name":"middy1","where":"right"},"pointdir":"right"}},{"type":"EntityBlock","x":720,"y":768,"settings":{"name":"middy2","facing":"left","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":774,"settings":{"attachto":{"name":"middy2","where":"left"},"pointdir":"left"}},{"type":"EntityBlock","x":1296,"y":720,"settings":{"name":"rightish2","facing":"left","movenext":{"start":"march"}}},{"type":"EntityBlock","x":1152,"y":720,"settings":{"name":"rightish1","facing":"right","movenext":{"start":"march"}}},{"type":"EntitySpikes","x":712,"y":1014,"settings":{"attachto":{"name":"middy4","where":"left"},"pointdir":"left"}},{"type":"EntitySpikes","x":624,"y":1014,"settings":{"attachto":{"name":"middy3","where":"right"},"pointdir":"right"}},{"type":"EntitySpeedregion","x":100,"y":288,"settings":{"ground":"icy","size":{"x":88,"y":1052}}},{"type":"EntitySpeedregion","x":628,"y":528,"settings":{"ground":"icy","size":{"x":88,"y":812}}},{"type":"EntitySpeedregion","x":100,"y":1344,"settings":{"ground":"icy","size":{"x":616,"y":92}}},{"type":"EntitySpeedregion","x":100,"y":196,"settings":{"ground":"icy","size":{"x":1388,"y":88}}},{"type":"EntitySpeedregion","x":2112,"y":1152,"settings":{"ground":"icy","size":{"x":1296,"y":96}}},{"type":"EntitySpeedregion","x":1204,"y":528,"settings":{"ground":"icy","size":{"x":88,"y":624}}},{"type":"EntitySpeedregion","x":1392,"y":484,"settings":{"ground":"icy","size":{"x":428,"y":88}}},{"type":"EntitySpeedregion","x":628,"y":436,"settings":{"ground":"icy","size":{"x":668,"y":88}}},{"type":"EntitySpeedregion","x":2784,"y":144,"settings":{"ground":"icy","size":{"x":624,"y":92}}},{"type":"EntitySpeedregion","x":1828,"y":436,"settings":{"ground":"icy","size":{"x":328,"y":184}}},{"type":"EntitySpeedregion","x":2596,"y":100,"settings":{"ground":"icy","size":{"x":184,"y":188}}},{"type":"EntitySpeedregion","x":3316,"y":240,"settings":{"ground":"icy","size":{"x":88,"y":908}}},{"type":"EntitySpeedregion","x":2644,"y":292,"settings":{"ground":"icy","size":{"x":92,"y":188}}},{"type":"EntitySpeedregion","x":2164,"y":484,"settings":{"ground":"icy","size":{"x":572,"y":88}}},{"type":"EntitySpeedregion","x":1392,"y":288,"settings":{"ground":"icy","size":{"x":96,"y":192}}},{"type":"EntityTrench","x":1104,"y":820,"settings":{"size":{"x":96,"y":328}}},{"type":"EntityTrench","x":100,"y":1444,"settings":{"size":{"x":624,"y":42}}},{"type":"EntityTrench","x":8,"y":1252,"settings":{"size":{"x":88,"y":188}}},{"type":"EntityTrench","x":724,"y":1108,"settings":{"size":{"x":96,"y":328}}},{"type":"EntityTrench","x":196,"y":1252,"settings":{"size":{"x":436,"y":90}}},{"type":"EntityTrench","x":1156,"y":1344,"settings":{"size":{"x":192,"y":90}}},{"type":"EntityTrench","x":1104,"y":528,"settings":{"size":{"x":92,"y":140}}},{"type":"EntityTrench","x":1064,"y":1152,"settings":{"size":{"x":88,"y":188}}},{"type":"EntityTrench","x":724,"y":864,"settings":{"size":{"x":88,"y":96}}},{"type":"EntityTrench","x":632,"y":384,"settings":{"size":{"x":656,"y":44}}},{"type":"EntityTrench","x":540,"y":1108,"settings":{"size":{"x":88,"y":140}}},{"type":"EntityTrench","x":196,"y":1012,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":192,"y":288,"settings":{"size":{"x":44,"y":140}}},{"type":"EntityTrench","x":16,"y":1012,"settings":{"size":{"x":88,"y":88}}},{"type":"EntityTrench","x":8,"y":580,"settings":{"size":{"x":88,"y":280}}},{"type":"EntityTrench","x":196,"y":580,"settings":{"size":{"x":88,"y":280}}},{"type":"EntityTrench","x":532,"y":288,"settings":{"size":{"x":232,"y":80}}},{"type":"EntityTrench","x":8,"y":196,"settings":{"size":{"x":96,"y":232}}},{"type":"EntityTrench","x":104,"y":100,"settings":{"size":{"x":136,"y":96}}},{"type":"EntityTrench","x":532,"y":96,"settings":{"size":{"x":232,"y":96}}},{"type":"EntityTrench","x":2308,"y":1248,"settings":{"size":{"x":1104,"y":88}}},{"type":"EntityTrench","x":1204,"y":288,"settings":{"size":{"x":184,"y":96}}},{"type":"EntityTrench","x":1208,"y":96,"settings":{"size":{"x":284,"y":96}}},{"type":"EntityTrench","x":1492,"y":196,"settings":{"size":{"x":284,"y":284}}},{"type":"EntityTrench","x":1400,"y":572,"settings":{"size":{"x":380,"y":100}}},{"type":"EntityTrench","x":2216,"y":292,"settings":{"size":{"x":428,"y":188}}},{"type":"EntityTrench","x":2216,"y":576,"settings":{"size":{"x":524,"y":92}}},{"type":"EntityTrench","x":2740,"y":288,"settings":{"size":{"x":40,"y":284}}},{"type":"EntityTrench","x":2508,"y":96,"settings":{"size":{"x":88,"y":184}}},{"type":"EntityTrench","x":2604,"y":16,"settings":{"size":{"x":184,"y":80}}},{"type":"EntityTrench","x":2792,"y":60,"settings":{"size":{"x":620,"y":80}}},{"type":"EntityTrench","x":2792,"y":240,"settings":{"size":{"x":524,"y":80}}},{"type":"EntityTrench","x":3212,"y":336,"settings":{"size":{"x":100,"y":712}}},{"type":"EntityTrench","x":3408,"y":144,"settings":{"size":{"x":100,"y":1100}}},{"type":"EntityTrench","x":2308,"y":1060,"settings":{"size":{"x":1000,"y":88}}},{"type":"EntityTrench","x":1348,"y":1156,"settings":{"size":{"x":88,"y":188}}},{"type":"EntityTrench","x":1300,"y":820,"settings":{"size":{"x":92,"y":328}}},{"type":"EntityTrench","x":540,"y":868,"settings":{"size":{"x":88,"y":96}}},{"type":"EntityTrench","x":540,"y":436,"settings":{"size":{"x":88,"y":280}}},{"type":"EntityTrench","x":1300,"y":388,"settings":{"size":{"x":92,"y":280}}},{"type":"EntityTrench","x":724,"y":528,"settings":{"size":{"x":380,"y":188}}}],"layer":[{"name":"collision","width":80,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/collisiontiles-48x48.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]]},{"name":"main","width":80,"height":32,"linkWithCollision":false,"visible":1,"tilesetName":"media/tileset-gorebag2.png","repeat":false,"distance":"1","tilesize":48,"foreground":false,"data":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0],[0,0,45,45,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,0,45,45,0,45,0,0,0,0,0,45,0,45,45,0,45,45,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,45,45,45,45,45,45,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,45,45,45,45,45,45,45,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
