0) {\n\t\tsource += \"// ** \" + targetObj.name\t+ \"'s Scripts **\\n\"\n\t\tsource += scriptNames.collect(function(ea) {\n\t\t\treturn this.generateSourceForScript(baseObject, targetObj, ea)\n\t\t}, this).join('\\n\\n');\n\t}\n\n\tif (targetObj.attributeConnections) {\n\t\tsource += \"\\n\\n// ** \" + targetObj.name\t+ \"'s Connections **\\n\"\n\t\tsource += targetObj.attributeConnections.collect(function(ea) {\n\t\t\treturn this.generateSourceForConnection(baseObject, targetObj, ea)\n\t\t}, this).join('\\n');\n\t}\n\n\tif (targetObj.scriptSource && Object.isString(targetObj.scriptSource)) {\n\t\tsource += \"\\n\\n\";\n\t\tsource += this.generateSourceForProperty(\n\t\t\tbaseObject, targetObj, \"scriptSource\");\n\t}\n\n\treturn source\n}","funcProperties":{"__isSmartRef__":true,"id":318},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"317":{"this":{"__isSmartRef__":true,"id":245}},"318":{},"319":{"varMapping":{"__isSmartRef__":true,"id":320},"source":"function generateSourceForProperty(baseObject, targetObject, propertyName) {\n\tvar value = targetObject[propertyName];\n\treturn Strings.format('%s.'+ propertyName +'=%s;', \n\t\tthis.generateTargetCode(baseObject, targetObject),\t\n\t\tthis.generateSourceForValue(value))\n}","funcProperties":{"__isSmartRef__":true,"id":321},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"320":{"this":{"__isSmartRef__":true,"id":245}},"321":{},"322":{"varMapping":{"__isSmartRef__":true,"id":323},"source":"function generateSourceForScript(baseObject, targetObject, scriptName) {\n\tvar script =targetObject[scriptName].getOriginal();\n\treturn Strings.format('%s.addScript(%s);', \n\t\tthis.generateTargetCode(baseObject, targetObject) ,script)\n}","funcProperties":{"__isSmartRef__":true,"id":324},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"323":{"this":{"__isSmartRef__":true,"id":245}},"324":{},"325":{"varMapping":{"__isSmartRef__":true,"id":326},"source":"function generateSourceForValue(value) {\n\tif (Object.isString(value)) \n\t\treturn '\"' + value + '\"'\n\telse \n\t\treturn value\n}","funcProperties":{"__isSmartRef__":true,"id":327},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"326":{"this":{"__isSmartRef__":true,"id":245}},"327":{},"328":{"varMapping":{"__isSmartRef__":true,"id":329},"source":"function generateTargetCode(baseObject, targetObject) {\n\tvar name = targetObject.name;\n\tif (baseObject === targetObject) \n\t\treturn \"this\"\n\telse if (baseObject[name] === targetObject) \n\t\treturn \"this.\" + name\n\telse if (baseObject.testObject === targetObject) \n\t\treturn \"this.testObject\"\n\telse if (baseObject.get(name) === targetObject) \n\t\treturn 'this.get(\"' + name + '\")'\n\telse if (targetObject instanceof Morph) \n\t\treturn'$morph(\"' + name + '\")'\n\telse \n\t\treturn \"????\"\n}","funcProperties":{"__isSmartRef__":true,"id":330},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"329":{"this":{"__isSmartRef__":true,"id":245}},"330":{},"331":{"varMapping":{"__isSmartRef__":true,"id":332},"source":"function highlightSelectedObject(selection) {\n\tif (selection && selection.targetObj) showMorph(selection.targetObj)\n}","funcProperties":{"__isSmartRef__":true,"id":333},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"332":{"this":{"__isSmartRef__":true,"id":245}},"333":{},"334":{"varMapping":{"__isSmartRef__":true,"id":335},"source":"function listItemsForObj(obj, optPrefix) {\n\n\tvar listItems = [];\n\tvar prefix = optPrefix || \"\";\t\n\n\n\tif (obj.name) listItems.push({\n\t\tisListItem: true,\n\t\tstring: \"Object: \" + obj.name || \"unnamed\",\n\t\tvalue: {obj: obj, targetObj: obj}\t\n\t});\n\n\tif (obj.scriptSource && Object.isString(obj.scriptSource)) {\n\t\tlistItems.push({\n\t\t\tisListItem: true,\n\t\t\tstring: \" scriptSource\",\n\t\t\tvalue: {obj: obj, propertyName: 'scriptSource'}\t\n\t\t});\n\t}\n\n\tlistItems = listItems.concat(this.sortedScriptNamesOfObj(obj)\n\t\t.collect(function(name) { \n\t\t\treturn {isListItem: true, string: \" \" + name, value: {obj: obj, scriptName: name}}}))\n\n\t// BUG don't bind connections here...\n\tif (obj.attributeConnections)\n\t\t\tlistItems = listItems.concat(obj.attributeConnections.collect(function(ea) {\n\t\t\t\treturn {\n\t\t\t\t\tisListItem: true, \n\t\t\t\t\tstring: \" [\" + ea.getSourceAttrName() + \" -> \" + \n\t\t\t\t\t\tea.getTargetObj() + \".\" + ea.getTargetMethodName() + \"]\", \n\t\t\t\t\tvalue: {obj: obj, connection: ea }}\n\t\t\t}));\n\n\treturn listItems\n}","funcProperties":{"__isSmartRef__":true,"id":336},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"335":{"this":{"__isSmartRef__":true,"id":245}},"336":{},"337":{"varMapping":{"__isSmartRef__":true,"id":338},"source":"function removeTargetScript() {\n\tvar target = this.scriptList.selection.obj;\n\tif (!target) return;\n\n\n\tvar scriptName = this.scriptList.selection.scriptName; \n\tif (scriptName) {\n\t\tdelete target[scriptName];\n\t}\n\n\tvar connection = this.scriptList.selection.connection; \n\tif (connection)\n\t\tconnection.disconnect()\n\n\tthis.updateScriptList();\n}","funcProperties":{"__isSmartRef__":true,"id":339},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"338":{"this":{"__isSmartRef__":true,"id":245}},"339":{},"340":{"varMapping":{"__isSmartRef__":true,"id":341},"source":"function reset() {\n\t// this.reset()\n\tthis.bindMorphNames(\"targetName searchText scriptList scriptSource targetFound removeButton addButton closeButton\".split(\" \"))\n\tthis.target = null;\n\tthis.targetName.setTextString(\"nobody\");\n\tthis.scriptList.updateList([]);\n\tthis.scriptSource.setTextString(\"\");\n\tthis.searchText.setTextString(\"search for something\");\n}","funcProperties":{"__isSmartRef__":true,"id":342},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"341":{"this":{"__isSmartRef__":true,"id":245}},"342":{},"343":{"varMapping":{"__isSmartRef__":true,"id":344},"source":"function setSourceInPane(source, pane) {\n\tpane.setTextString(source);\n\tpane.owner.owner.scrollToTop();\n\n\tpane.highlightJavaScriptSyntax()\n}","funcProperties":{"__isSmartRef__":true,"id":345},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"344":{"this":{"__isSmartRef__":true,"id":245}},"345":{},"346":{"varMapping":{"__isSmartRef__":true,"id":347},"source":"function setTarget(obj) {\n\t// if (obj) alertOK(\"set target \" + obj.name)\n\tthis.target = obj\n\t// this.updateScriptList()\n\tif (!this.target) \n\t\tsource = 'no source';\n\telse \n\t\tsource = this.generateSourceForObject(this.target, this.target);\n\tthis.get('scriptSource').setTextString(source)\n\tthis.get('scriptSource').doitContext = this.target\n}","funcProperties":{"__isSmartRef__":true,"id":348},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"347":{"this":{"__isSmartRef__":true,"id":245}},"348":{},"349":{"varMapping":{"__isSmartRef__":true,"id":350},"source":"function setupConnections() {\n\t// this.setupConnections();\n\tconnect(this.targetName, 'textString', \n\t\tthis, 'target', \n\t\t{converter: function(n) { return $morph(n) }})\n\n\tconnect(this, 'target', \n\t\tthis.targetFound, 'setFill', \n\t\t{converter: function(obj) { return obj ? Color.green : Color.red}})\n\n\tconnect(this, 'target', this, 'setTarget')\n\n\tconnect(this.searchText, 'savedTextString', this, 'doSearch')\n}","funcProperties":{"__isSmartRef__":true,"id":351},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"350":{"this":{"__isSmartRef__":true,"id":245}},"351":{},"352":{"varMapping":{"__isSmartRef__":true,"id":353},"source":"function showTopLevelItems() {\n\tvar topLevelMorphs = this.world().submorphs.reject(function(morph){\n\t\treturn !morph.name;\n\t})\n\tvar morphNames = topLevelMorphs.pluck('name'),\n\t\titems = morphNames.collect(function(name) {\n\t\t\treturn [name, function() { $morph('targetName').setTextString(name) }]\n\t\t});\n\tMenuMorph.openAtHand(items, 'Select morph to edit')\n}","funcProperties":{"__isSmartRef__":true,"id":354},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"353":{"this":{"__isSmartRef__":true,"id":245}},"354":{},"355":{"varMapping":{"__isSmartRef__":true,"id":356},"source":"function sortedScriptNamesOfObj(obj) {\n\treturn Functions.own(obj)\n\t\t.select(function(name) { return obj[name].hasLivelyClosure })\n\t\t.sortBy(function(name) { return name.toLowerCase() });\n}","funcProperties":{"__isSmartRef__":true,"id":357},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"356":{"this":{"__isSmartRef__":true,"id":245}},"357":{},"358":{"varMapping":{"__isSmartRef__":true,"id":359},"source":"function updateScriptList() {\n\tthis.scriptList.updateList(this.allScriptListItems());\n\t// this.scriptList.selectLineAt(this.scriptList.selectedLineNo);\n\t// this.scriptSource.owner.owner.scrollToTop(); // demeter :-D\n}","funcProperties":{"__isSmartRef__":true,"id":360},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"359":{"this":{"__isSmartRef__":true,"id":245}},"360":{},"361":{"varMapping":{"__isSmartRef__":true,"id":362},"source":"function updateSourcePane(selection) { \n\tvar textMorph = this.scriptSource;\n\n\tif (!selection || !selection.obj) {\n\t\ttextMorph.setTextString(\"\");\n\t\treturn;\n\t}\n\n\tif (selection.targetObj) {\n\t\tthis.setSourceInPane(this.generateSourceForObject(\n\t\t\ttextMorph.getDoitContext(), selection.targetObj), textMorph);\n\t\treturn;\n\t}\n\n\tif (selection.connection) {\n\t\tthis.setSourceInPane(this.generateSourceForConnection(\n\t\t\ttextMorph.getDoitContext(),selection.obj,selection.connection), textMorph);\n\t\treturn;\n\t}\n\n\tif (selection.propertyName) {\n\t\tthis.setSourceInPane(this.generateSourceForProperty(\n\t\t\ttextMorph.getDoitContext(), selection.obj, selection.propertyName), textMorph);\n\t\treturn;\n\t}\n\n\tthis.setSourceInPane(\n\t\tthis.generateSourceForScript(textMorph.getDoitContext(),selection.obj, selection.scriptName), \n\t\ttextMorph)\n}","funcProperties":{"__isSmartRef__":true,"id":363},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"362":{"this":{"__isSmartRef__":true,"id":245}},"363":{},"364":{"_BorderWidth":0,"_Fill":null,"_StrokeOpacity":0,"_BorderRadius":0,"_Extent":{"__isSmartRef__":true,"id":365},"__SourceModuleName__":"Global.lively.morphic.Shapes","__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"365":{"x":762,"y":387,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"366":{"adjustForNewBounds":true},"367":{"morph":{"__isSmartRef__":true,"id":86},"dispatchTable":{"__isSmartRef__":true,"id":368},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"368":{"mouseup":{"__isSmartRef__":true,"id":369},"mousedown":{"__isSmartRef__":true,"id":370},"mousewheel":{"__isSmartRef__":true,"id":371}},"369":{"type":"mouseup","target":{"__isSmartRef__":true,"id":86},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"370":{"type":"mousedown","target":{"__isSmartRef__":true,"id":86},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"371":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":86},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"372":{"x":46,"y":287,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"373":{"x":762,"y":387,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"374":{"x":0,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"375":{"x":589,"y":296,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"376":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"377":{"setTitle":{"__isSmartRef__":true,"id":378},"setTarget":{"__isSmartRef__":true,"id":385}},"378":{"varMapping":{"__isSmartRef__":true,"id":379},"source":"function setTitle(s) {\n\tthis.titleBar.label.setTextString(s)\n}","funcProperties":{"__isSmartRef__":true,"id":384},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"379":{"this":{"__isSmartRef__":true,"id":86},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":380}},"380":{"$super":{"__isSmartRef__":true,"id":381}},"381":{"varMapping":{"__isSmartRef__":true,"id":382},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":383},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"382":{"obj":{"__isSmartRef__":true,"id":86},"name":"setTitle"},"383":{},"384":{},"385":{"varMapping":{"__isSmartRef__":true,"id":386},"source":"function setTarget(obj) {\n\tthis.submorphs.last().setTarget(obj)\n}","funcProperties":{"__isSmartRef__":true,"id":387},"__LivelyClassName__":"lively.Closure","__SourceModuleName__":"Global"},"386":{"this":{"__isSmartRef__":true,"id":86}},"387":{},"388":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":389},"_Extent":{"__isSmartRef__":true,"id":390},"_Fill":{"__isSmartRef__":true,"id":391},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"389":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"390":{"x":2800,"y":2900,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"391":{"r":1,"g":1,"b":1,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"392":{"morph":{"__isSmartRef__":true,"id":0},"dispatchTable":{"__isSmartRef__":true,"id":393},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"393":{"contextmenu":{"__isSmartRef__":true,"id":394},"mouseup":{"__isSmartRef__":true,"id":395},"mousedown":{"__isSmartRef__":true,"id":396},"mousemove":{"__isSmartRef__":true,"id":397},"selectstart":{"__isSmartRef__":true,"id":398},"keydown":{"__isSmartRef__":true,"id":399}},"394":{"type":"contextmenu","target":{"__isSmartRef__":true,"id":0},"targetMethodName":"onContextMenu","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"395":{"type":"mouseup","target":{"__isSmartRef__":true,"id":0},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"396":{"type":"mousedown","target":{"__isSmartRef__":true,"id":0},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"397":{"type":"mousemove","target":{"__isSmartRef__":true,"id":0},"targetMethodName":"onMouseMove","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"398":{"type":"selectstart","target":{"__isSmartRef__":true,"id":0},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"399":{"type":"keydown","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"400":{"submorphs":[],"scripts":[],"id":31,"cachedTextString":"","shape":{"__isSmartRef__":true,"id":401},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":true,"fixedHeight":true,"allowsInput":true,"_OverflowMode":"auto","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":406},"_Position":{"__isSmartRef__":true,"id":415},"_MaxTextWidth":814,"_MaxTextHeight":296,"textColor":{"__isSmartRef__":true,"id":405},"owner":{"__isSmartRef__":true,"id":416},"showsHalos":false,"halos":[],"name":"initializerText","savedTextString":"lively.morphic.World.addMethods(\n'initializing', {\n\tinitialize: lively.morphic.World.prototype.initialize.wrap(function() {\n\t\tvar args = $A(arguments),\n\t\t\tproceed = args.shift();\n\t\tproceed.apply(this, args);\n\t\tthis.registerForGlobalKeyboardEvents();\n\t}),\n},\n'keyboard events', {\n\tregisterForGlobalKeyboardEvents: function() {\n\t\tGlobal.addEventListener('keydown', this, 'onKeyDown')\n\t\tGlobal.addEventListener('keypress', this, 'onKeyPress')\n\t},\n\tonKeyDown: function(evt) {\n\t\talert('world key down ' + evt)\n\t},\n\tonKeyPress: function(evt) {\n\t\talert('world key down ' + evt)\n\t},\n});\n\nthis.world().registerForGlobalKeyboardEvents()\n","__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Text"},"401":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":402},"_Extent":{"__isSmartRef__":true,"id":403},"_Fill":{"__isSmartRef__":true,"id":404},"_BorderWidth":2,"_BorderColor":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"402":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"403":{"x":814,"y":296,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"404":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"405":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"406":{"morph":{"__isSmartRef__":true,"id":400},"dispatchTable":{"__isSmartRef__":true,"id":407},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"407":{"mouseup":{"__isSmartRef__":true,"id":408},"mousedown":{"__isSmartRef__":true,"id":409},"selectstart":{"__isSmartRef__":true,"id":410},"mousewheel":{"__isSmartRef__":true,"id":411},"keydown":{"__isSmartRef__":true,"id":412},"keyup":{"__isSmartRef__":true,"id":413},"keypress":{"__isSmartRef__":true,"id":414}},"408":{"type":"mouseup","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"409":{"type":"mousedown","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"410":{"type":"selectstart","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"411":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"412":{"type":"keydown","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"413":{"type":"keyup","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"414":{"type":"keypress","target":{"__isSmartRef__":true,"id":400},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"415":{"x":0,"y":28.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"416":{"submorphs":[{"__isSmartRef__":true,"id":400},{"__isSmartRef__":true,"id":417}],"scripts":[],"id":32,"shape":{"__isSmartRef__":true,"id":531},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":533},"_Position":{"__isSmartRef__":true,"id":538},"targetMorph":{"__isSmartRef__":true,"id":400},"titleBar":{"__isSmartRef__":true,"id":417},"contentOffset":{"__isSmartRef__":true,"id":415},"collapsedTransform":null,"collapsedExtent":null,"expandedTransform":null,"expandedExtent":null,"ignoreEventsOnExpand":false,"owner":null,"showsHalos":false,"halos":[],"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.Window"},"417":{"submorphs":[{"__isSmartRef__":true,"id":418},{"__isSmartRef__":true,"id":429},{"__isSmartRef__":true,"id":444},{"__isSmartRef__":true,"id":470},{"__isSmartRef__":true,"id":496}],"scripts":[],"id":33,"shape":{"__isSmartRef__":true,"id":522},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":525},"_Position":{"__isSmartRef__":true,"id":530},"eventsAreIgnored":true,"contentMorph":{"__isSmartRef__":true,"id":418},"windowMorph":{"__isSmartRef__":true,"id":416},"label":{"__isSmartRef__":true,"id":429},"closeButton":{"__isSmartRef__":true,"id":444},"menuButton":{"__isSmartRef__":true,"id":470},"collapseButton":{"__isSmartRef__":true,"id":496},"owner":{"__isSmartRef__":true,"id":416},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.TitleBar"},"418":{"submorphs":[],"scripts":[],"id":34,"shape":{"__isSmartRef__":true,"id":419},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":423},"_Position":{"__isSmartRef__":true,"id":428},"owner":{"__isSmartRef__":true,"id":417},"eventsAreIgnored":true,"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Box"},"419":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":420},"_Extent":{"__isSmartRef__":true,"id":421},"_Fill":{"__isSmartRef__":true,"id":422},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"420":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"421":{"x":500,"y":25,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"422":{"r":0,"g":0,"b":0.8,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"423":{"morph":{"__isSmartRef__":true,"id":418},"dispatchTable":{"__isSmartRef__":true,"id":424},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"424":{"mouseup":{"__isSmartRef__":true,"id":425},"mousedown":{"__isSmartRef__":true,"id":426},"mousewheel":{"__isSmartRef__":true,"id":427}},"425":{"type":"mouseup","target":{"__isSmartRef__":true,"id":418},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"426":{"type":"mousedown","target":{"__isSmartRef__":true,"id":418},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"427":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":418},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"428":{"x":0.5,"y":0.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"429":{"submorphs":[],"scripts":[],"id":35,"cachedTextString":"Workspace","shape":{"__isSmartRef__":true,"id":430},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":false,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":433},"_Position":{"__isSmartRef__":true,"id":442},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":405},"isLabel":true,"eventsAreIgnored":true,"padding":{"__isSmartRef__":true,"id":443},"owner":{"__isSmartRef__":true,"id":417},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Text"},"430":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":431},"_Extent":{"__isSmartRef__":true,"id":432},"_BorderColor":{"__isSmartRef__":true,"id":405},"_BorderRadius":8,"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"431":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"432":{"x":72,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"433":{"morph":{"__isSmartRef__":true,"id":429},"dispatchTable":{"__isSmartRef__":true,"id":434},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"434":{"mouseup":{"__isSmartRef__":true,"id":435},"mousedown":{"__isSmartRef__":true,"id":436},"selectstart":{"__isSmartRef__":true,"id":437},"mousewheel":{"__isSmartRef__":true,"id":438},"keydown":{"__isSmartRef__":true,"id":439},"keyup":{"__isSmartRef__":true,"id":440},"keypress":{"__isSmartRef__":true,"id":441}},"435":{"type":"mouseup","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"436":{"type":"mousedown","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"437":{"type":"selectstart","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"438":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"439":{"type":"keydown","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"440":{"type":"keyup","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"441":{"type":"keypress","target":{"__isSmartRef__":true,"id":429},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"442":{"x":214,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"443":{"x":6,"y":2,"width":0,"height":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Rectangle"},"444":{"submorphs":[{"__isSmartRef__":true,"id":445}],"scripts":[],"id":36,"shape":{"__isSmartRef__":true,"id":459},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":462},"label":{"__isSmartRef__":true,"id":445},"owner":{"__isSmartRef__":true,"id":417},"attributeConnections":[{"__isSmartRef__":true,"id":467},{"__isSmartRef__":true,"id":468}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"_Position":{"__isSmartRef__":true,"id":469},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"445":{"submorphs":[],"scripts":[],"id":37,"cachedTextString":"X","shape":{"__isSmartRef__":true,"id":446},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":false,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":449},"_Position":{"__isSmartRef__":true,"id":458},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":405},"isLabel":true,"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":444},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Text"},"446":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":447},"_Extent":{"__isSmartRef__":true,"id":448},"_BorderColor":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"447":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"448":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"449":{"morph":{"__isSmartRef__":true,"id":445},"dispatchTable":{"__isSmartRef__":true,"id":450},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"450":{"mouseup":{"__isSmartRef__":true,"id":451},"mousedown":{"__isSmartRef__":true,"id":452},"selectstart":{"__isSmartRef__":true,"id":453},"mousewheel":{"__isSmartRef__":true,"id":454},"keydown":{"__isSmartRef__":true,"id":455},"keyup":{"__isSmartRef__":true,"id":456},"keypress":{"__isSmartRef__":true,"id":457}},"451":{"type":"mouseup","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"452":{"type":"mousedown","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"453":{"type":"selectstart","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"454":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"455":{"type":"keydown","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"456":{"type":"keyup","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"457":{"type":"keypress","target":{"__isSmartRef__":true,"id":445},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"458":{"x":-4,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"459":{"borderWidth":0,"strokeOpacity":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":460},"_Extent":{"__isSmartRef__":true,"id":461},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"460":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"461":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"462":{"morph":{"__isSmartRef__":true,"id":444},"dispatchTable":{"__isSmartRef__":true,"id":463},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"463":{"mouseup":{"__isSmartRef__":true,"id":464},"mousedown":{"__isSmartRef__":true,"id":465},"mousewheel":{"__isSmartRef__":true,"id":466}},"464":{"type":"mouseup","target":{"__isSmartRef__":true,"id":444},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"465":{"type":"mousedown","target":{"__isSmartRef__":true,"id":444},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"466":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":444},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"467":{"sourceObj":{"__isSmartRef__":true,"id":444},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"getCloseHelp","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"468":{"sourceObj":{"__isSmartRef__":true,"id":444},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"initiateShutdown","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"469":{"x":481,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"470":{"submorphs":[{"__isSmartRef__":true,"id":471}],"scripts":[],"id":38,"shape":{"__isSmartRef__":true,"id":485},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":488},"label":{"__isSmartRef__":true,"id":471},"owner":{"__isSmartRef__":true,"id":417},"attributeConnections":[{"__isSmartRef__":true,"id":493},{"__isSmartRef__":true,"id":494}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"_Position":{"__isSmartRef__":true,"id":495},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"471":{"submorphs":[],"scripts":[],"id":39,"cachedTextString":"M","shape":{"__isSmartRef__":true,"id":472},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":false,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":475},"_Position":{"__isSmartRef__":true,"id":484},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":405},"isLabel":true,"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":470},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Text"},"472":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":473},"_Extent":{"__isSmartRef__":true,"id":474},"_BorderColor":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"473":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"474":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"475":{"morph":{"__isSmartRef__":true,"id":471},"dispatchTable":{"__isSmartRef__":true,"id":476},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"476":{"mouseup":{"__isSmartRef__":true,"id":477},"mousedown":{"__isSmartRef__":true,"id":478},"selectstart":{"__isSmartRef__":true,"id":479},"mousewheel":{"__isSmartRef__":true,"id":480},"keydown":{"__isSmartRef__":true,"id":481},"keyup":{"__isSmartRef__":true,"id":482},"keypress":{"__isSmartRef__":true,"id":483}},"477":{"type":"mouseup","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"478":{"type":"mousedown","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"479":{"type":"selectstart","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"480":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"481":{"type":"keydown","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"482":{"type":"keyup","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"483":{"type":"keypress","target":{"__isSmartRef__":true,"id":471},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"484":{"x":-5,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"485":{"borderWidth":0,"strokeOpacity":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":486},"_Extent":{"__isSmartRef__":true,"id":487},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"486":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"487":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"488":{"morph":{"__isSmartRef__":true,"id":470},"dispatchTable":{"__isSmartRef__":true,"id":489},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"489":{"mouseup":{"__isSmartRef__":true,"id":490},"mousedown":{"__isSmartRef__":true,"id":491},"mousewheel":{"__isSmartRef__":true,"id":492}},"490":{"type":"mouseup","target":{"__isSmartRef__":true,"id":470},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"491":{"type":"mousedown","target":{"__isSmartRef__":true,"id":470},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"492":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":470},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"493":{"sourceObj":{"__isSmartRef__":true,"id":470},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"getMenuHelp","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"494":{"sourceObj":{"__isSmartRef__":true,"id":470},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"showTargetMorphMenu","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"495":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"496":{"submorphs":[{"__isSmartRef__":true,"id":497}],"scripts":[],"id":40,"shape":{"__isSmartRef__":true,"id":511},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":514},"label":{"__isSmartRef__":true,"id":497},"owner":{"__isSmartRef__":true,"id":417},"attributeConnections":[{"__isSmartRef__":true,"id":519},{"__isSmartRef__":true,"id":520}],"doNotSerialize":["$$getHelpText","$$fire"],"doNotCopyProperties":["$$getHelpText","$$fire"],"_Position":{"__isSmartRef__":true,"id":521},"__SourceModuleName__":"Global.lively.morphic.Widgets","__LivelyClassName__":"lively.morphic.WindowControl"},"497":{"submorphs":[],"scripts":[],"id":41,"cachedTextString":"–","shape":{"__isSmartRef__":true,"id":498},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"fixedHeight":false,"allowsInput":false,"_OverflowMode":"visible","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":501},"_Position":{"__isSmartRef__":true,"id":510},"_MaxTextWidth":null,"_MaxTextHeight":null,"textColor":{"__isSmartRef__":true,"id":405},"isLabel":true,"eventsAreIgnored":true,"owner":{"__isSmartRef__":true,"id":496},"__SourceModuleName__":"Global.lively.morphic.Core","__LivelyClassName__":"lively.morphic.Text"},"498":{"borderWidth":0,"fill":null,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":499},"_Extent":{"__isSmartRef__":true,"id":500},"_BorderColor":{"__isSmartRef__":true,"id":405},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"499":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"500":{"x":20,"y":20,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"501":{"morph":{"__isSmartRef__":true,"id":497},"dispatchTable":{"__isSmartRef__":true,"id":502},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"502":{"mouseup":{"__isSmartRef__":true,"id":503},"mousedown":{"__isSmartRef__":true,"id":504},"selectstart":{"__isSmartRef__":true,"id":505},"mousewheel":{"__isSmartRef__":true,"id":506},"keydown":{"__isSmartRef__":true,"id":507},"keyup":{"__isSmartRef__":true,"id":508},"keypress":{"__isSmartRef__":true,"id":509}},"503":{"type":"mouseup","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"504":{"type":"mousedown","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"505":{"type":"selectstart","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"506":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"507":{"type":"keydown","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"508":{"type":"keyup","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"509":{"type":"keypress","target":{"__isSmartRef__":true,"id":497},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"510":{"x":-3,"y":-6,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"511":{"borderWidth":0,"strokeOpacity":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":512},"_Extent":{"__isSmartRef__":true,"id":513},"__LivelyClassName__":"lively.morphic.Shapes.Ellipse"},"512":{"x":3,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"513":{"x":16,"y":16,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"514":{"morph":{"__isSmartRef__":true,"id":496},"dispatchTable":{"__isSmartRef__":true,"id":515},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"515":{"mouseup":{"__isSmartRef__":true,"id":516},"mousedown":{"__isSmartRef__":true,"id":517},"mousewheel":{"__isSmartRef__":true,"id":518}},"516":{"type":"mouseup","target":{"__isSmartRef__":true,"id":496},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"517":{"type":"mousedown","target":{"__isSmartRef__":true,"id":496},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"518":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":496},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"519":{"sourceObj":{"__isSmartRef__":true,"id":496},"sourceAttrName":"getHelpText","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"getCollapseHelp","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"520":{"sourceObj":{"__isSmartRef__":true,"id":496},"sourceAttrName":"fire","targetObj":{"__isSmartRef__":true,"id":416},"targetMethodName":"toggleCollapse","__SourceModuleName__":"Global.lively.bindings","__LivelyClassName__":"AttributeConnection"},"521":{"x":462,"y":3,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"522":{"borderWidth":0,"fill":null,"strokeOpacity":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":523},"_Extent":{"__isSmartRef__":true,"id":524},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"523":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"524":{"x":500,"y":22,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"525":{"morph":{"__isSmartRef__":true,"id":417},"dispatchTable":{"__isSmartRef__":true,"id":526},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"526":{"mouseup":{"__isSmartRef__":true,"id":527},"mousedown":{"__isSmartRef__":true,"id":528},"mousewheel":{"__isSmartRef__":true,"id":529}},"527":{"type":"mouseup","target":{"__isSmartRef__":true,"id":417},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"528":{"type":"mousedown","target":{"__isSmartRef__":true,"id":417},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"529":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":417},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"530":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"531":{"borderWidth":0,"fill":null,"strokeOpacity":0,"borderRadius":0,"__SourceModuleName__":"Global.lively.morphic.Shapes","_Extent":{"__isSmartRef__":true,"id":532},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"532":{"x":522,"y":240.5,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"533":{"morph":{"__isSmartRef__":true,"id":416},"dispatchTable":{"__isSmartRef__":true,"id":534},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"534":{"mouseup":{"__isSmartRef__":true,"id":535},"mousedown":{"__isSmartRef__":true,"id":536},"mousewheel":{"__isSmartRef__":true,"id":537}},"535":{"type":"mouseup","target":{"__isSmartRef__":true,"id":416},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"536":{"type":"mousedown","target":{"__isSmartRef__":true,"id":416},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"537":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":416},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"538":{"x":1057,"y":193,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"539":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"540":{"name":"Local code","__LivelyClassName__":"ChangeSet","__SourceModuleName__":"Global.lively.ChangeSet"},"541":{"submorphs":[{"__isSmartRef__":true,"id":542},{"__isSmartRef__":true,"id":559},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":592}],"scripts":[],"id":1990,"shape":{"__isSmartRef__":true,"id":608},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":611},"_Position":{"__isSmartRef__":true,"id":616},"items":[{"__isSmartRef__":true,"id":617},{"__isSmartRef__":true,"id":618},{"__isSmartRef__":true,"id":619}],"itemMorphs":[{"__isSmartRef__":true,"id":559},{"__isSmartRef__":true,"id":576},{"__isSmartRef__":true,"id":592}],"title":{"__isSmartRef__":true,"id":542},"owner":null,"__LivelyClassName__":"lively.morphic.Menu","__SourceModuleName__":"Global.lively.morphic.Widgets"},"542":{"submorphs":[],"scripts":[],"id":1991,"cachedTextString":"","shape":{"__isSmartRef__":true,"id":543},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":false,"_OverflowMode":"hidden","_FontFamily":"Helvetica","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":548},"_Position":{"__isSmartRef__":true,"id":557},"_MaxTextWidth":null,"_MaxTextHeight":30,"textStyle":null,"charsTyped":"","isLabel":true,"eventsAreIgnored":true,"_Padding":{"__isSmartRef__":true,"id":558},"owner":{"__isSmartRef__":true,"id":541},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.Core"},"543":{"position":{"__isSmartRef__":true,"id":544},"_Extent":{"__isSmartRef__":true,"id":545},"_BorderWidth":0,"_BorderColor":{"__isSmartRef__":true,"id":546},"_Fill":{"__isSmartRef__":true,"id":547},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"544":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"545":{"x":200,"y":30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"546":{"r":0,"g":0,"b":0,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"547":{"r":1,"g":1,"b":1,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"548":{"morph":{"__isSmartRef__":true,"id":542},"dispatchTable":{"__isSmartRef__":true,"id":549},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"549":{"mouseup":{"__isSmartRef__":true,"id":550},"mousedown":{"__isSmartRef__":true,"id":551},"selectstart":{"__isSmartRef__":true,"id":552},"mousewheel":{"__isSmartRef__":true,"id":553},"keydown":{"__isSmartRef__":true,"id":554},"keyup":{"__isSmartRef__":true,"id":555},"keypress":{"__isSmartRef__":true,"id":556}},"550":{"type":"mouseup","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"551":{"type":"mousedown","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"552":{"type":"selectstart","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"553":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"554":{"type":"keydown","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"555":{"type":"keyup","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"556":{"type":"keypress","target":{"__isSmartRef__":true,"id":542},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"557":{"x":0,"y":-30,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"558":{"x":5,"y":5,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"559":{"submorphs":[],"scripts":[],"id":1992,"cachedTextString":"PartsBin","shape":{"__isSmartRef__":true,"id":560},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":true,"_OverflowMode":"visible","_FontFamily":"Helvetica","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":564},"_Position":{"__isSmartRef__":true,"id":574},"_MaxTextWidth":null,"_MaxTextHeight":28,"textStyle":null,"charsTyped":"","owner":{"__isSmartRef__":true,"id":541},"_Padding":{"__isSmartRef__":true,"id":575},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.Core"},"560":{"position":{"__isSmartRef__":true,"id":561},"_Extent":{"__isSmartRef__":true,"id":562},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":546},"_Fill":{"__isSmartRef__":true,"id":563},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"561":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"562":{"x":200,"y":28,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"563":{"r":0.95,"g":0.95,"b":0.95,"a":1,"__LivelyClassName__":"Color","__SourceModuleName__":"Global"},"564":{"morph":{"__isSmartRef__":true,"id":559},"dispatchTable":{"__isSmartRef__":true,"id":565},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"565":{"mouseup":{"__isSmartRef__":true,"id":566},"mousedown":{"__isSmartRef__":true,"id":567},"selectstart":{"__isSmartRef__":true,"id":568},"mousewheel":{"__isSmartRef__":true,"id":569},"keydown":{"__isSmartRef__":true,"id":570},"keyup":{"__isSmartRef__":true,"id":571},"keypress":{"__isSmartRef__":true,"id":572},"mouseover":{"__isSmartRef__":true,"id":573}},"566":{"type":"mouseup","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"567":{"type":"mousedown","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"568":{"type":"selectstart","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"569":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"570":{"type":"keydown","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"571":{"type":"keyup","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"572":{"type":"keypress","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"573":{"type":"mouseover","target":{"__isSmartRef__":true,"id":559},"targetMethodName":"onMouseOver","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"574":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"575":{"x":3,"y":3,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"576":{"submorphs":[],"scripts":[],"id":1993,"cachedTextString":"Tools","shape":{"__isSmartRef__":true,"id":577},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":true,"_OverflowMode":"visible","_FontFamily":"Helvetica","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":580},"_Position":{"__isSmartRef__":true,"id":590},"_MaxTextWidth":null,"_MaxTextHeight":28,"textStyle":null,"charsTyped":"","owner":{"__isSmartRef__":true,"id":541},"_Padding":{"__isSmartRef__":true,"id":591},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.Core"},"577":{"position":{"__isSmartRef__":true,"id":578},"_Extent":{"__isSmartRef__":true,"id":579},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":546},"_Fill":{"__isSmartRef__":true,"id":563},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"578":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"579":{"x":200,"y":28,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"580":{"morph":{"__isSmartRef__":true,"id":576},"dispatchTable":{"__isSmartRef__":true,"id":581},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"581":{"mouseup":{"__isSmartRef__":true,"id":582},"mousedown":{"__isSmartRef__":true,"id":583},"selectstart":{"__isSmartRef__":true,"id":584},"mousewheel":{"__isSmartRef__":true,"id":585},"keydown":{"__isSmartRef__":true,"id":586},"keyup":{"__isSmartRef__":true,"id":587},"keypress":{"__isSmartRef__":true,"id":588},"mouseover":{"__isSmartRef__":true,"id":589}},"582":{"type":"mouseup","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"583":{"type":"mousedown","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"584":{"type":"selectstart","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"585":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"586":{"type":"keydown","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"587":{"type":"keyup","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"588":{"type":"keypress","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"589":{"type":"mouseover","target":{"__isSmartRef__":true,"id":576},"targetMethodName":"onMouseOver","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"590":{"x":0,"y":28,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"591":{"x":3,"y":3,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"592":{"submorphs":[],"scripts":[],"id":1994,"cachedTextString":"save world","shape":{"__isSmartRef__":true,"id":593},"grabbingEnabled":false,"droppingEnabled":false,"halosEnabled":true,"fixedWidth":false,"_WhiteSpaceHandling":"pre","fixedHeight":true,"allowInput":true,"_OverflowMode":"visible","_FontFamily":"Helvetica","registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":596},"_Position":{"__isSmartRef__":true,"id":606},"_MaxTextWidth":null,"_MaxTextHeight":28,"textStyle":null,"charsTyped":"","owner":{"__isSmartRef__":true,"id":541},"_Padding":{"__isSmartRef__":true,"id":607},"__LivelyClassName__":"lively.morphic.Text","__SourceModuleName__":"Global.lively.morphic.Core"},"593":{"position":{"__isSmartRef__":true,"id":594},"_Extent":{"__isSmartRef__":true,"id":595},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":546},"_Fill":{"__isSmartRef__":true,"id":563},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"594":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"595":{"x":200,"y":28,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"596":{"morph":{"__isSmartRef__":true,"id":592},"dispatchTable":{"__isSmartRef__":true,"id":597},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"597":{"mouseup":{"__isSmartRef__":true,"id":598},"mousedown":{"__isSmartRef__":true,"id":599},"selectstart":{"__isSmartRef__":true,"id":600},"mousewheel":{"__isSmartRef__":true,"id":601},"keydown":{"__isSmartRef__":true,"id":602},"keyup":{"__isSmartRef__":true,"id":603},"keypress":{"__isSmartRef__":true,"id":604},"mouseover":{"__isSmartRef__":true,"id":605}},"598":{"type":"mouseup","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"599":{"type":"mousedown","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"600":{"type":"selectstart","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onSelectStart","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"601":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"602":{"type":"keydown","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onKeyDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"603":{"type":"keyup","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onKeyUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"604":{"type":"keypress","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onKeyPress","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"605":{"type":"mouseover","target":{"__isSmartRef__":true,"id":592},"targetMethodName":"onMouseOver","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"606":{"x":0,"y":56,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"607":{"x":3,"y":3,"width":0,"height":0,"__LivelyClassName__":"Rectangle","__SourceModuleName__":"Global"},"608":{"position":{"__isSmartRef__":true,"id":609},"_Extent":{"__isSmartRef__":true,"id":610},"_Fill":{"__isSmartRef__":true,"id":547},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle","__SourceModuleName__":"Global.lively.morphic.Shapes"},"609":{"x":0,"y":0,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"610":{"x":200,"y":84,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"611":{"morph":{"__isSmartRef__":true,"id":541},"dispatchTable":{"__isSmartRef__":true,"id":612},"__LivelyClassName__":"lively.morphic.EventHandler","__SourceModuleName__":"Global.lively.morphic.Events"},"612":{"mouseup":{"__isSmartRef__":true,"id":613},"mousedown":{"__isSmartRef__":true,"id":614},"mousewheel":{"__isSmartRef__":true,"id":615}},"613":{"type":"mouseup","target":{"__isSmartRef__":true,"id":541},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"614":{"type":"mousedown","target":{"__isSmartRef__":true,"id":541},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"615":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":541},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"616":{"x":587,"y":242,"__LivelyClassName__":"Point","__SourceModuleName__":"Global"},"617":{"isMenuItem":true,"string":"PartsBin","value":"PartsBin","idx":0,"onClickCallback":null},"618":{"isMenuItem":true,"string":"Tools","value":"Tools","idx":1,"onClickCallback":null},"619":{"isMenuItem":true,"string":"save world","value":"save world","idx":2},"620":{"submorphs":[],"scripts":[],"id":232,"shape":{"__isSmartRef__":true,"id":621},"droppingEnabled":true,"halosEnabled":true,"registeredForMouseEvents":true,"eventHandler":{"__isSmartRef__":true,"id":626},"_Position":{"__isSmartRef__":true,"id":631},"name":"Selection","showsHalos":false,"halos":[],"_Rotation":0,"partsBinMetaInfo":{"__isSmartRef__":true,"id":632},"__SourceModuleName__":"Global.lively.morphic.Core","owner":null,"selectedMorphs":[],"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":633},"__LivelyClassName__":"lively.morphic.Box"},"621":{"__SourceModuleName__":"Global.lively.morphic.Shapes","_Position":{"__isSmartRef__":true,"id":622},"_Extent":{"__isSmartRef__":true,"id":623},"_Fill":{"__isSmartRef__":true,"id":624},"_BorderWidth":1,"_BorderColor":{"__isSmartRef__":true,"id":625},"__LivelyClassName__":"lively.morphic.Shapes.Rectangle"},"622":{"x":0,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"623":{"x":1,"y":0,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"624":{"r":0.0031372549019607846,"g":0.0031372549019607846,"b":0.0031372549019607846,"a":0.2,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"625":{"r":0,"g":0,"b":0,"a":1,"__SourceModuleName__":"Global","__LivelyClassName__":"Color"},"626":{"morph":{"__isSmartRef__":true,"id":620},"dispatchTable":{"__isSmartRef__":true,"id":627},"__SourceModuleName__":"Global.lively.morphic.Events","__LivelyClassName__":"lively.morphic.EventHandler"},"627":{"mouseup":{"__isSmartRef__":true,"id":628},"mousedown":{"__isSmartRef__":true,"id":629},"mousewheel":{"__isSmartRef__":true,"id":630}},"628":{"type":"mouseup","target":{"__isSmartRef__":true,"id":620},"targetMethodName":"onMouseUp","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"629":{"type":"mousedown","target":{"__isSmartRef__":true,"id":620},"targetMethodName":"onMouseDown","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"630":{"type":"mousewheel","target":{"__isSmartRef__":true,"id":620},"targetMethodName":"onMouseWheel","handleOnCapture":false,"doNotSerialize":["node"],"unregisterMethodName":"unregisterHTMLAndSVGAndCANVAS"},"631":{"x":197,"y":213,"__SourceModuleName__":"Global","__LivelyClassName__":"Point"},"632":{"partsSpaceName":"PartsBin/NewWorld","__SourceModuleName__":"Global.lively.PartsBin","__LivelyClassName__":"lively.PartsBin.PartsBinMetaInfo"},"633":{"setExtent":{"__isSmartRef__":true,"id":634}},"634":{"varMapping":{"__isSmartRef__":true,"id":635},"source":"function setExtent(r) {\n\t$super(r);\n\n\n\tvar selection = [];\n\tthis.owner.submorphs.forEach(function(m) {\n\tif (m !== this && this.bounds().containsRect(m.bounds())) selection.push(m);\n\t\t}, this);\n\t\n\tvar newSelection = selection.reject(function(ea) {\n\t\tthis.selectedMorphs.include(ea)\n\t}, this);\n\n\tif (newSelection.length > 0) {\n\t\t// alertOK('selected ' + newSelection)\n\t}\n\n\tthis.selectedMorphs = selection.reverse();\n}","funcProperties":{"__isSmartRef__":true,"id":640},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"635":{"this":{"__isSmartRef__":true,"id":620},"__serializedLivelyClosures__":{"__isSmartRef__":true,"id":636}},"636":{"$super":{"__isSmartRef__":true,"id":637}},"637":{"varMapping":{"__isSmartRef__":true,"id":638},"source":"function () {\n\t\t\t\ttry {\n\t\t\t\t\treturn obj.constructor.prototype[name].apply(obj, arguments)\n\t\t\t\t} catch(e) {\n\t\t\t\t\talert('Error in $super call: ' + e + '\\n' + e.stack);\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t}","funcProperties":{"__isSmartRef__":true,"id":639},"__SourceModuleName__":"Global","__LivelyClassName__":"lively.Closure"},"638":{"obj":{"__isSmartRef__":true,"id":620},"name":"setExtent"},"639":{},"640":{},"isSimplifiedRegistry":true}}]]>